Hoogle Search
Within LTS Haskell 24.15 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
runStateT :: StateT s (m :: Type -> Type) a -> s -> m (a, s)rebase Rebase.Prelude No documentation available.
-
automaton Data.Automaton.Trans.State Make the state transition in StateT explicit as Automaton inputs and outputs. This is the opposite of stateS.
-
automaton Data.Automaton.Trans.State Convert global state to internal state of an Automaton. The current state is output on every step.
-
automaton Data.Automaton.Trans.State Like runStateS_, but don't output the current state.
-
data-effects Data.Effect.State Interpret the State effect based on an IO-fused semantics using IORef.
runStateC :: StateC s (m :: Type -> Type) a -> ReaderC (IORef s) m afused-effects Control.Carrier.State.IORef No documentation available.
runStateRef :: MonadIO m => IORef s -> StateC s m a -> m (s, a)fused-effects Control.Carrier.State.IORef Run a State effect starting from the passed IORef. This function is lawless, given that the underlying IORef can be modified by another thread.
runStateT :: StateT s (m :: Type -> Type) a -> s -> m (a, s)monads-tf Control.Monad.State.Lazy No documentation available.
runStateT :: StateT s (m :: Type -> Type) a -> s -> m (a, s)monads-tf Control.Monad.State.Strict No documentation available.
runStatement :: FromSql SqlValue a => BoundStatement a -> IO [a]relational-query-HDBC Database.HDBC.Record Lazy-IO version of runStatement'.