Copyright | (c) Ross Paterson 2003 |
---|---|
License | BSD-style (see the LICENSE file in the distribution) |
Maintainer | ross@soi.city.ac.uk |
Stability | experimental |
Portability | portable |
Safe Haskell | Safe |
Language | Haskell98 |
Control.Arrow.Transformer
Description
Arrow transformers, for making new arrow types out of old ones.
Synopsis
- class (Arrow a, Arrow (f a)) => ArrowTransformer f a where
Documentation
class (Arrow a, Arrow (f a)) => ArrowTransformer f a where #
Construct a new arrow from an existing one.
Minimal complete definition
Methods
Instances
Arrow a => ArrowTransformer Automaton a # | |
Defined in Control.Arrow.Transformer.Automaton | |
Arrow a => ArrowTransformer StreamArrow a # | |
Defined in Control.Arrow.Transformer.Stream Methods lift :: a b c -> StreamArrow a b c # | |
ArrowChoice a => ArrowTransformer (ErrorArrow ex) a # | |
Defined in Control.Arrow.Transformer.Error Methods lift :: a b c -> ErrorArrow ex a b c # | |
Arrow a => ArrowTransformer (ReaderArrow r) a # | |
Defined in Control.Arrow.Transformer.Reader Methods lift :: a b c -> ReaderArrow r a b c # | |
Arrow a => ArrowTransformer (StateArrow s) a # | |
Defined in Control.Arrow.Transformer.State Methods lift :: a b c -> StateArrow s a b c # | |
(Arrow a, Applicative f) => ArrowTransformer (StaticArrow f) a # | |
Defined in Control.Arrow.Transformer.Static Methods lift :: a b c -> StaticArrow f a b c # | |
(Arrow a, Monoid w) => ArrowTransformer (WriterArrow w) a # | |
Defined in Control.Arrow.Transformer.Writer Methods lift :: a b c -> WriterArrow w a b c # |