Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
8
public
class
Repeat {
9
public
static
void
repeat(
int
n, Runnable action) {
10
range(0, n).forEach(i -> action.run());
11
}
12
}
Callers
1
main
Method · 0.80
Calls
2
range
Method · 0.80
run
Method · 0.65
Tested by
no test coverage detected