SamplerIO : Type -> TypeAn 'IO' based random sampler.
sampleIO : SamplerIO a -> IO aInitialize a pseudo-random number generator using randomness supplied by the operating system. Providing the randomness, i.e. setting the random seed, is done automatically, so this is just `id`.
sampleIOwith : SamplerIO a -> Bits64 -> IO aLike 'sampleIO' but with a custom seed.