arrows-0.4.4.0: Arrow classes and transformers

Portabilitynon-portable (multi-parameter type classes)
Stabilityexperimental
Maintainerross@soi.city.ac.uk

Control.Arrow.Transformer.Static

Description

Arrow transformer adding static information.

Synopsis

Documentation

newtype StaticArrow f a b c Source

An arrow type that augments the underlying arrow with static information.

Constructors

StaticArrow (f (a b c)) 

type StaticMonadArrow m = StaticArrow (WrappedMonad m)Source

A special case is monads applied to the whole arrow, in contrast to Kleisli arrows, in which the monad is applied to the output.

type StaticArrowArrow a s = StaticArrow (WrappedArrow a s)Source

A special case.

wrap :: (Applicative f, Arrow a) => f (a b c) -> StaticArrow f a b cSource

unwrap :: (Applicative f, Arrow a) => StaticArrow f a b c -> f (a b c)Source

wrapA :: (Arrow a, Arrow a') => a s (a' b c) -> StaticArrowArrow a s a' b cSource

unwrapA :: (Arrow a, Arrow a') => StaticArrowArrow a s a' b c -> a s (a' b c)Source

wrapM :: (Monad m, Arrow a) => m (a b c) -> StaticMonadArrow m a b cSource

unwrapM :: (Monad m, Arrow a) => StaticMonadArrow m a b c -> m (a b c)Source