repeat method
void
repeat(
- void forEach()
Implementation
void repeat(void forEach()) {
assert(this > -1);
for (int i = 0; i < this; i++) {
forEach();
}
}
void repeat(void forEach()) {
assert(this > -1);
for (int i = 0; i < this; i++) {
forEach();
}
}