math/rand.Rand.Int63 (method)
11 uses
math/rand (current package)
rand.go#L85: func (r *Rand) Int63() int64 { return r.src.Int63() }
rand.go#L88: func (r *Rand) Uint32() uint32 { return uint32(r.Int63() >> 31) }
rand.go#L95: return uint64(r.Int63())>>31 | uint64(r.Int63())<<32
rand.go#L99: func (r *Rand) Int31() int32 { return int32(r.Int63() >> 32) }
rand.go#L103: u := uint(r.Int63())
rand.go#L114: return r.Int63() & (n - 1)
rand.go#L117: v := r.Int63()
rand.go#L119: v = r.Int63()
rand.go#L196: f := float64(r.Int63()) / (1 << 63)
rand.go#L307: func Int63() int64 { return globalRand.Int63() }
 |
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. |