MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / repeat

Method repeat

onjava/Repeat.java:9–11  ·  view source on GitHub ↗
(int n, Runnable action)

Source from the content-addressed store, hash-verified

7
8public class Repeat {
9 public static void repeat(int n, Runnable action) {
10 range(0, n).forEach(i -> action.run());
11 }
12}

Callers 1

mainMethod · 0.80

Calls 2

rangeMethod · 0.80
runMethod · 0.65

Tested by

no test coverage detected