General Purpose library for Freestanding C++ and POSIX systems
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

8 行
124 B

  1. #pragma once
  2. #include <stddef.h>
  3. namespace gp{
  4. template <typename F>
  5. void repeat(size_t n, F f) {
  6. while (n--) f();
  7. }
  8. }