ghc-8.0.2: The GHC API

Safe HaskellNone
LanguageHaskell2010

UniqSupply

Contents

Synopsis

Main data type

data UniqSupply Source #

A value of type UniqSupply is unique, and it can supply one distinct Unique. Also, from the supply, one can also manufacture an arbitrary number of further UniqueSupply values, which will be distinct from the first and from all others.

Operations on supplies

uniqFromSupply :: UniqSupply -> Unique Source #

Obtain the Unique from this particular UniqSupply

uniqsFromSupply :: UniqSupply -> [Unique] Source #

Obtain an infinite list of Unique that can be generated by constant splitting of the supply

takeUniqFromSupply :: UniqSupply -> (Unique, UniqSupply) Source #

Obtain the Unique from this particular UniqSupply, and a new supply

mkSplitUniqSupply :: Char -> IO UniqSupply Source #

Create a unique supply out of thin air. The character given must be distinct from those of all calls to this function in the compiler for the values generated to be truly unique.

splitUniqSupply :: UniqSupply -> (UniqSupply, UniqSupply) Source #

Build two UniqSupply from a single one, each of which can supply its own Unique.

listSplitUniqSupply :: UniqSupply -> [UniqSupply] Source #

Create an infinite list of UniqSupply from a single one

splitUniqSupply3 :: UniqSupply -> (UniqSupply, UniqSupply, UniqSupply) Source #

Build three UniqSupply from a single one, each of which can supply its own unique

splitUniqSupply4 :: UniqSupply -> (UniqSupply, UniqSupply, UniqSupply, UniqSupply) Source #

Build four UniqSupply from a single one, each of which can supply its own unique

Unique supply monad and its abstraction

data UniqSM result Source #

A monad which just gives the ability to obtain Uniques

Instances

Monad UniqSM # 

Methods

(>>=) :: UniqSM a -> (a -> UniqSM b) -> UniqSM b Source #

(>>) :: UniqSM a -> UniqSM b -> UniqSM b Source #

return :: a -> UniqSM a Source #

fail :: String -> UniqSM a Source #

Functor UniqSM # 

Methods

fmap :: (a -> b) -> UniqSM a -> UniqSM b Source #

(<$) :: a -> UniqSM b -> UniqSM a Source #

MonadFix UniqSM # 

Methods

mfix :: (a -> UniqSM a) -> UniqSM a Source #

Applicative UniqSM # 

Methods

pure :: a -> UniqSM a Source #

(<*>) :: UniqSM (a -> b) -> UniqSM a -> UniqSM b Source #

(*>) :: UniqSM a -> UniqSM b -> UniqSM b Source #

(<*) :: UniqSM a -> UniqSM b -> UniqSM a Source #

MonadUnique UniqSM # 

liftUs :: MonadUnique m => UniqSM a -> m a Source #

Operations on the monad

initUs :: UniqSupply -> UniqSM a -> (a, UniqSupply) Source #

Run the UniqSM action, returning the final UniqSupply

initUs_ :: UniqSupply -> UniqSM a -> a Source #

Run the UniqSM action, discarding the final UniqSupply

lazyThenUs :: UniqSM a -> (a -> UniqSM b) -> UniqSM b Source #

lazyMapUs :: (a -> UniqSM b) -> [a] -> UniqSM [b] Source #

Set supply strategy