func math/rand.New

7 uses

	math/rand (current package)
		rand.go#L78: func New(src Source) *Rand {
		rand.go#L330: 		r = New(new(lockedSource))
		rand.go#L423: 	r := New(new(lockedSource))

	math/big
		prime.go#L93: 	rand := rand.New(rand.NewSource(int64(n[0])))

	github.com/google/go-cmp/cmp
		report_text.go#L18: var randBool = rand.New(rand.NewSource(time.Now().Unix())).Intn(2) == 0

	github.com/google/go-cmp/cmp/internal/diff
		diff.go#L122: var randBool = rand.New(rand.NewSource(time.Now().Unix())).Intn(2) == 0

	testing
		testing.go#L2126: 		rng := rand.New(rand.NewSource(n))