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.

  1. runStateT :: StateT s (m :: Type -> Type) a -> s -> m (a, s)

    rebase Rebase.Prelude

    No documentation available.

  2. runStateS :: forall (m :: Type -> Type) s a b . (Functor m, Monad m) => Automaton (StateT s m) a b -> Automaton m (s, a) (s, b)

    automaton Data.Automaton.Trans.State

    Make the state transition in StateT explicit as Automaton inputs and outputs. This is the opposite of stateS.

  3. runStateS_ :: forall (m :: Type -> Type) s a b . (Functor m, Monad m) => Automaton (StateT s m) a b -> s -> Automaton m a (s, b)

    automaton Data.Automaton.Trans.State

    Convert global state to internal state of an Automaton. The current state is output on every step.

  4. runStateS__ :: forall (m :: Type -> Type) s a b . (Functor m, Monad m) => Automaton (StateT s m) a b -> s -> Automaton m a b

    automaton Data.Automaton.Trans.State

    Like runStateS_, but don't output the current state.

  5. runStateIORef :: forall s (es :: [Effect]) (ff :: (Type -> Type) -> Type -> Type) a (c :: (Type -> Type) -> Constraint) . (Emb IO :> es, Monad (Eff ff es), Free c ff) => s -> Eff ff (State s ': es) a -> Eff ff es (s, a)

    data-effects Data.Effect.State

    Interpret the State effect based on an IO-fused semantics using IORef.

  6. runStateC :: StateC s (m :: Type -> Type) a -> ReaderC (IORef s) m a

    fused-effects Control.Carrier.State.IORef

    No documentation available.

  7. 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.

  8. runStateT :: StateT s (m :: Type -> Type) a -> s -> m (a, s)

    monads-tf Control.Monad.State.Lazy

    No documentation available.

  9. runStateT :: StateT s (m :: Type -> Type) a -> s -> m (a, s)

    monads-tf Control.Monad.State.Strict

    No documentation available.

  10. runStatement :: FromSql SqlValue a => BoundStatement a -> IO [a]

    relational-query-HDBC Database.HDBC.Record

    Lazy-IO version of runStatement'.

Page 8 of many | Previous | Next