| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Data.Automaton.Trans.Accum
Description
Synopsis
- module Control.Monad.Trans.Accum
- accumS :: forall (m :: Type -> Type) w a b. Functor m => Automaton m (w, a) (w, b) -> Automaton (AccumT w m) a b
- runAccumS :: forall (m :: Type -> Type) w a b. Functor m => Automaton (AccumT w m) a b -> Automaton m (w, a) (w, b)
- runAccumS_ :: forall (m :: Type -> Type) w a b. (Functor m, Monoid w, Monad m) => Automaton (AccumT w m) a b -> Automaton m a (w, b)
- runAccumS__ :: forall (m :: Type -> Type) w a b. (Functor m, Monoid w, Monad m) => Automaton (AccumT w m) a b -> Automaton m a b
Documentation
module Control.Monad.Trans.Accum
accumS :: forall (m :: Type -> Type) w a b. Functor m => Automaton m (w, a) (w, b) -> Automaton (AccumT w m) a b Source #
runAccumS :: forall (m :: Type -> Type) w a b. Functor m => Automaton (AccumT w m) a b -> Automaton m (w, a) (w, b) Source #