|
Data.Either | Portability | portable | Stability | experimental | Maintainer | libraries@haskell.org |
|
|
|
Description |
The Either type, and associated operations.
|
|
Synopsis |
|
|
|
Documentation |
|
|
The Either type represents values with two possibilities: a value of
type Either a b is either Left a or Right b.
The Either type is sometimes used to represent a value which is
either correct or an error; by convention, the Left constructor is
used to hold an error value and the Right constructor is used to
hold a correct value (mnemonic: "right" also means "correct").
| Constructors | | Instances | |
|
|
|
Case analysis for the Either type.
If the value is Left a, apply the first function to a;
if it is Right b, apply the second function to b.
|
|
|
Extracts from a list of Either all the Left elements
All the Left elements are extracted in order.
|
|
|
Extracts from a list of Either all the Right elements
All the Right elements are extracted in order.
|
|
|
Partitions a list of Either into two lists
All the Left elements are extracted, in order, to the first
component of the output. Similarly the Right elements are extracted
to the second component of the output.
|
|
Produced by Haddock version 2.6.0 |