Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ nextLong
Method
nextLong
classpath/java/util/Random.java:80–82 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
78
}
79
80
public
long nextLong() {
81
return
((long) next(32) << 32) + next(32);
82
}
83
84
public
double nextDouble() {
85
return
(((long) next(26) << 27) + next(27)) / (double) (1L << 53);
Callers
nothing calls this directly
Calls
1
next
Method · 0.95
Tested by
no test coverage detected