MCPcopy Create free account
hub / github.com/davidgiven/luje / nextLong

Method nextLong

lib/java/util/Random.java:235–237  ·  view source on GitHub ↗

Generates a uniformly distributed 64-bit integer value from the random number sequence. @return 64-bit random integer. @see java.lang.Integer#MAX_VALUE @see java.lang.Integer#MIN_VALUE @see #next @see #nextInt() @see #nextInt(int)

()

Source from the content-addressed store, hash-verified

233 * @see #nextInt(int)
234 */
235 public long nextLong() {
236 return ((long) next(32) << 32) + next(32);
237 }
238
239 /**
240 * Modifies the seed a using linear congruential formula presented in <i>The

Callers

nothing calls this directly

Calls 1

nextMethod · 0.95

Tested by

no test coverage detected