packages feed

minesweeper-0.8.8: System/Random/Instances.hs

-- missing StdGen instances
module System.Random.Instances where

import System.Random
import Data.Binary

-------------------------------

instance Eq StdGen where 
    _ == _ = error "Eq StdGen instance not defined"

instance Ord StdGen where 
    _ < _ = error "Ord StdGen instance not defined"

instance Binary StdGen where
    put = put . show
    get = fmap read get