| Copyright | (c) Russell O'Connor 2009 |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | libraries@haskell.org |
| Stability | experimental |
| Portability | portable |
| Safe Haskell | Safe-Inferred |
| Language | Haskell98 |
Control.Applicative.Backwards
Description
Making functors with an Applicative instance that performs actions
in the reverse order.
Documentation
newtype Backwards f a
The same functor, but with an Applicative instance that performs
actions in the reverse order.
Instances
| Alternative f => Alternative (Backwards f) | Try alternatives in the same order as |
| Functor f => Functor (Backwards f) | Derived instance. |
| Applicative f => Applicative (Backwards f) | Apply |
| Foldable f => Foldable (Backwards f) | Derived instance. |
| Traversable f => Traversable (Backwards f) | Derived instance. |