arrows-0.4.4.1: Arrow classes and transformers

Copyright(c) Ross Paterson 2003
LicenseBSD-style (see the LICENSE file in the distribution)
Maintainerross@soi.city.ac.uk
Stabilityexperimental
Portabilityportable
Safe HaskellSafe
LanguageHaskell98

Control.Arrow.Transformer

Description

Arrow transformers, for making new arrow types out of old ones.

Synopsis

Documentation

class (Arrow a, Arrow (f a)) => ArrowTransformer f a where Source

Construct a new arrow from an existing one.

Methods

lift :: a b c -> f a b c Source

A transformation of arrows, preserving arr, >>> and first.

Typical usage in arrow notation:

	proc p -> ...
		(|lift cmd|)