Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ pow
Method
pow
classpath/java/lang/Long.java:135–139 ·
view source on GitHub ↗
(long a, long b)
Source
from the content-addressed store, hash-verified
133
}
134
135
private
static
long pow(long a, long b) {
136
long c = 1;
137
for
(
int
i = 0; i < b; ++i) c *= a;
138
return
c;
139
}
140
141
public
static
long parseLong(String s) {
142
return
parseLong(s, 10);
Callers
1
parseLong
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected