math/rand/v2.Rand.Uint64 (method, view implemented interface methods)
11 uses
math/rand/v2 (current package)
exp.go#L32: u := r.Uint64()
normal.go#L39: u := r.Uint64()
rand.go#L51: func (r *Rand) Uint64() uint64 { return r.src.Uint64() }
rand.go#L86: return r.Uint64() & (n - 1)
rand.go#L119: hi, lo := bits.Mul64(r.Uint64(), n)
rand.go#L123: hi, lo = bits.Mul64(r.Uint64(), n)
rand.go#L133: return uint32(r.Uint64()) & (n - 1)
rand.go#L150: x := r.Uint64()
rand.go#L159: x := r.Uint64()
rand.go#L210: return float64(r.Uint64()<<11>>11) / (1 << 53)
rand.go#L288: func Uint64() uint64 { return globalRand.Uint64() }
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |