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. runState :: State s a -> s -> (a, s)

    rev-state Control.Monad.Trans.RevState

    No documentation available.

  2. runState :: forall s (es :: Effects) a . s -> (forall (e :: Effects) . () => State s e -> Eff (e :& es) a) -> Eff es (a, s)

    bluefin Bluefin.State

    >>> runPureEff $ runState 10 $ \st -> do
    n <- get st
    pure (2 * n)
    (20,10)
    

  3. runState :: forall s (r :: [(Type -> Type) -> Type -> Type]) a . s -> Sem ((State s :: (Type -> Type) -> Type -> Type) ': r) a -> Sem r (s, a)

    incipit-core IncipitCore

    Run a State effect with local state.

  4. data RunState text

    process-extras System.Process.Run

    This is the state record that controls the output style.

  5. RunState :: OutputStyle -> text -> text -> Bool -> Bool -> Int -> Bool -> text -> RunState text

    process-extras System.Process.Run

    No documentation available.

  6. data RunState p (m :: Type -> Type) h

    ginger Text.Ginger.Run.Type

    No documentation available.

  7. RunState :: HashMap VarName (GVal (Run p m h)) -> h -> Template p -> Maybe Text -> Maybe [h] -> Bool -> p -> RunState p (m :: Type -> Type) h

    ginger Text.Ginger.Run.Type

    No documentation available.

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

    transformers Control.Monad.Trans.State.Lazy

    No documentation available.

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

    transformers Control.Monad.Trans.State.Strict

    No documentation available.

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

    mtl Control.Monad.State.Lazy

    No documentation available.

Page 4 of many | Previous | Next