Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
multistate Control.Monad.Trans.MultiState.Strict No documentation available.
-
multistate Control.Monad.Trans.MultiState.Strict No documentation available.
-
multistate Control.Monad.Trans.MultiState.Strict No documentation available.
-
multistate Control.Monad.Trans.MultiState.Strict No documentation available.
-
multistate Control.Monad.Trans.MultiState.Strict No documentation available.
-
multistate Control.Monad.Trans.MultiState.Strict No documentation available.
tellState :: (Monoid s, MonadState s m) => s -> m ()nondeterminism Control.Monad.Amb A helper to inject state into the backtracking stack
evalState :: State s a -> s -> adunai Control.Monad.Trans.MSF.State Evaluate a state computation with the given initial state and return the final value, discarding the final state.
evalStateT :: Monad m => StateT s m a -> s -> m adunai Control.Monad.Trans.MSF.State Evaluate a state computation with the given initial state and return the final value, discarding the final state.
evalStateT m s = liftM fst (runStateT m s)
execState :: State s a -> s -> sdunai Control.Monad.Trans.MSF.State Evaluate a state computation with the given initial state and return the final state, discarding the final value.