Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. mapMaybeS :: forall (m :: Type -> Type) a b . Monad m => Automaton m a b -> Automaton m (Maybe a) (Maybe b)

    automaton Data.Automaton

    Only step the automaton if the input is Just.

  2. mappendFrom :: forall w (m :: Type -> Type) . (Monoid w, Monad m) => w -> Automaton m w w

    automaton Data.Automaton

    Like accumulateWith, with mappend as the accumulation function.

  3. mappendS :: forall w (m :: Type -> Type) . (Monoid w, Monad m) => Automaton m w w

    automaton Data.Automaton

    Like mappendFrom, initialised at mempty.

  4. mapMaybeT :: (m (Maybe a) -> n (Maybe b)) -> MaybeT m a -> MaybeT n b

    automaton Data.Automaton.Trans.Maybe

    Transform the computation inside a MaybeT.

  5. mapRWS :: ((a, s, w) -> (b, s, w')) -> RWS r w s a -> RWS r w' s b

    automaton Data.Automaton.Trans.RWS

    Map the return value, final state and output of a computation using the given function.

  6. mapRWST :: (m (a, s, w) -> n (b, s, w')) -> RWST r w s m a -> RWST r w' s n b

    automaton Data.Automaton.Trans.RWS

    Map the inner computation using the given function.

  7. mapWriter :: ((a, w) -> (b, w')) -> Writer w a -> Writer w' b

    automaton Data.Automaton.Trans.Writer

    Map both the return value and output of a computation using the given function.

  8. mapWriterT :: (m (a, w) -> n (b, w')) -> WriterT w m a -> WriterT w' n b

    automaton Data.Automaton.Trans.Writer

    Map both the return value and output of a computation using the given function.

  9. mapOutput :: forall (m :: Type -> Type) a b e . Functor m => (a -> b) -> StreamExcept a m e -> StreamExcept b m e

    automaton Data.Stream.Except

    Apply a function to the output of the stream

  10. mapOptimizedStreamT :: (Functor m, Functor n) => (forall s . () => m (Result s a) -> n (Result s b)) -> OptimizedStreamT m a -> OptimizedStreamT n b

    automaton Data.Stream.Optimized

    Change the output type and effect of a stream without changing its state type.

Page 252 of many | Previous | Next