ghc-7.8.3: The GHC API

Safe HaskellSafe-Inferred
LanguageHaskell98

State

Synopsis

Documentation

newtype State s a Source

Constructors

State 

Fields

runState' :: s -> (#a, s#)
 

Instances

gets :: (s -> a) -> State s a Source

put :: s -> State s () Source

modify :: (s -> s) -> State s () Source

evalState :: State s a -> s -> a Source

execState :: State s a -> s -> s Source

runState :: State s a -> s -> (a, s) Source

mapAccumLM Source

Arguments

:: Monad m 
=> (acc -> x -> m (acc, y))

combining funcction

-> acc

initial state

-> [x]

inputs

-> m (acc, [y])

final state, outputs

Monadic version of mapAccumL