type math/rand/v2.PCG

8 uses

	math/rand/v2 (current package)
		pcg.go#L18: type PCG struct {
		pcg.go#L24: func NewPCG(seed1, seed2 uint64) *PCG {
		pcg.go#L25: 	return &PCG{seed1, seed2}
		pcg.go#L29: func (p *PCG) Seed(seed1, seed2 uint64) {
		pcg.go#L35: func (p *PCG) MarshalBinary() ([]byte, error) {
		pcg.go#L46: func (p *PCG) UnmarshalBinary(data []byte) error {
		pcg.go#L55: func (p *PCG) next() (hi, lo uint64) {
		pcg.go#L82: func (p *PCG) Uint64() uint64 {