# Functions
NewDeterministicGenerator returns a random generator which is only seeded with crypto/rand, but is deterministic otherwise (given seed, produces given results, deterministically).
NewGenerator returns a new generator that uses random values from crypto/rand as a source (cryptographically secure random number generator).
# Type aliases
Rand is alias for underlying random generator.