ghc-7.4.2: The GHC API

Safe HaskellNone

State

Synopsis

Documentation

newtype State s a

Constructors

State 

Fields

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

Instances

get :: State s s

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

put :: s -> State s ()

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

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

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

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

mapAccumLM

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