ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | >> Random <<

Module: Random
Class: RandomGen
Instances: StdGen

class RandomGen g where
  next  :: g  -> (Int, g)
  split :: g -> (g, g)


instance RandomGen StdGen where

...