Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Control.Monad.Trans.MultiState.Class
Contents
Description
The multi-valued version of mtl's MonadState
Synopsis
- class Monad m => MonadMultiGet a m where
- mGet :: m a
- class MonadMultiGet a m => MonadMultiState a m where
- mSet :: a -> m ()
MonadMultiState class
class Monad m => MonadMultiGet a m where Source #
In contrast to MonadMultiReader, MonadMultiGet is defined for State too, so it corresponds to read-access of any kind.
Note however that for MultiRWS, only the values from the state
part can
be accessed via MonadMultiGet
, due to limitations of the design of
MultiRWS
and of the type system. This is issue is resolved in the
MultiGST
type.
Instances
class MonadMultiGet a m => MonadMultiState a m where Source #