golang.org/x/exp/rand.Rand.Uint64 (method)
8 uses
golang.org/x/exp/rand (current package)
rand.go#L69: func (r *Rand) Uint64() uint64 { return r.src.Uint64() }
rand.go#L75: func (r *Rand) Uint32() uint32 { return uint32(r.Uint64() >> 32) }
rand.go#L78: func (r *Rand) Int31() int32 { return int32(r.Uint64() >> 33) }
rand.go#L82: u := uint(r.Uint64())
rand.go#L96: return r.Uint64() & (n - 1)
rand.go#L100: v := r.Uint64()
rand.go#L104: v = r.Uint64()
rand.go#L270: func Uint64() uint64 { return globalRand.Uint64() }
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |