General Purpose library for Freestanding C++ and POSIX systems
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

8 rindas
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. }