type golang.org/x/exp/rand.PCGSource

12 uses

	golang.org/x/exp/rand (current package)
		rand.go#L31: 	var rng PCGSource
		rand.go#L226: 	rng, _ := src.(*PCGSource)
		rand.go#L249: var globalRand = New(&LockedSource{src: NewSource(1).(*PCGSource)})
		rand.go#L252: var _ *PCGSource = globalRand.src.(*LockedSource).src
		rand.go#L341: 	src *PCGSource
		rng.go#L25: type PCGSource struct {
		rng.go#L48: func (pcg *PCGSource) Seed(seed uint64) {
		rng.go#L54: func (pcg *PCGSource) Uint64() uint64 {
		rng.go#L61: func (pcg *PCGSource) add() {
		rng.go#L67: func (pcg *PCGSource) multiply() {
		rng.go#L76: func (pcg *PCGSource) MarshalBinary() ([]byte, error) {
		rng.go#L84: func (pcg *PCGSource) UnmarshalBinary(data []byte) error {