math/rand.Rand.Int63 (method, view implemented interface methods)
11 uses
math/rand (current package)
rand.go#L96: func (r *Rand) Int63() int64 { return r.src.Int63() }
rand.go#L99: func (r *Rand) Uint32() uint32 { return uint32(r.Int63() >> 31) }
rand.go#L106: return uint64(r.Int63())>>31 | uint64(r.Int63())<<32
rand.go#L110: func (r *Rand) Int31() int32 { return int32(r.Int63() >> 32) }
rand.go#L114: u := uint(r.Int63())
rand.go#L125: return r.Int63() & (n - 1)
rand.go#L128: v := r.Int63()
rand.go#L130: v = r.Int63()
rand.go#L207: f := float64(r.Int63()) / (1 << 63)
rand.go#L423: func Int63() int64 { return globalRand().Int63() }
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |