RosettaCodeData/Task/Repeat/C++/repeat-1.cpp

6 lines
113 B
C++
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
template <typename Function>
void repeat(Function f, unsigned int n) {
for(unsigned int i=n; 0<i; i--)
f();
}