golang.org/x/exp/rand.PCGSource.low (field)
10 uses
golang.org/x/exp/rand (current package)
rng.go#L26: low uint64
rng.go#L49: pcg.low = seed
rng.go#L58: return bits.RotateLeft64(pcg.high^pcg.low, -int(pcg.high>>58))
rng.go#L63: pcg.low, carry = bits.Add64(pcg.low, incLow, 0)
rng.go#L68: hi, lo := bits.Mul64(pcg.low, mulLow)
rng.go#L70: hi += pcg.low * mulHigh
rng.go#L71: pcg.low = lo
rng.go#L79: binary.BigEndian.PutUint64(buf[8:], pcg.low)
rng.go#L88: pcg.low = binary.BigEndian.Uint64(data[8:])
![]() |
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. |