State +Control.Monad.Trans -mtl
A state monad parameterized by the type s of the state to carry.
The return function leaves the state unchanged, while >>= uses the final state of the first computation as the initial state of the second.
Construct a state monad computation from a state transformer function.
Construct a state monad computation from a function. (The inverse of runState.)
Data.State
Version 0.1
This package provides a Template Haskell function which transforms a normal record declaration into one which supports many useful operations when used as the state in a State monad.
Version 0.0.1
TODO
Version 0.1.0
A MonadST type class, instances, and some helpful monad functions.
Version 1.0.7
A collection of type-classes generalizing the read/write/modify operations for stateful variables provided by things like IORef, TVar, &c. Note that The interface has changed a bit from the 0.2.* version. "*Ref" functions are now called "*Reference" and new "*Ref" function exist with simpler signatures. The new Ref existential type provides a convenient monad-indexed reference type, and the HasRef class indicates monads for which there is a default reference type for every referent.
Version 0.3
Simple State-like monad transformer where states can be saved to and restored from an internal stack.
Version 0.1.1
A state transformer monad parameterized by:
* s - The state.
* m - The inner monad.
The return function leaves the state unchanged, while >>= uses the final state of the first computation as the initial state of the second.
The ST monad and STRefs in a portable form. This package implements state threads as wrapper around IO and IORefs. Your compiler must support rank-2-types, IORefs, unsafePerformIO and unsafeInterleaveIO. The package can be used as drop-in replacement for the st package.
Version 0.1.1
This package contains state variables, which are references in the IO monad, like IORefs or parts of the OpenGL state.
Version 1.0.0.0
Use regular Haskell data structures as your database and get stronger ACID guarantees than most RDBMS offer.
Version 0.6.3
This package declares BinaryState type class, which is similar to Data.Binary.Binary, but Get/Put monads can track state.
Version 0.1.1
Evaluate a state computation with the given initial state and return the final value, discarding the final state.
* m s = fst (runState m
>
Evaluate a state computation with the given initial state and return the final value, discarding the final state.
* m s = liftM fst
> (runStateT m
Evaluate a state computation with the given initial state and return the final state, discarding the final value.
* m s = snd (runState m
>
Evaluate a state computation with the given initial state and return the final state, discarding the final value.
* m s = liftM snd
> (runStateT m
Show more results