Safe Haskell | None |
---|
Libraries.RandomSource
Description
This module provides a container type for sources of
randomness. This makes it possible for a source of randomness (any
instance of the RandomGen
class) to be stored in a data structure
without having to specify its type explicitly.
- data RandomSource where
- RandomSource :: forall g. RandomGen g => g -> RandomSource
Documentation
data RandomSource where Source #
A container type to hold a source of randomness. This can hold
any instance of the RandomGen
class.
Constructors
RandomSource :: forall g. RandomGen g => g -> RandomSource |
Instances