| Copyright | (c) 2006-2007 Roman Leshchinskiy (c) 2013 Simon Meier |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Simon Meier <iridcode@gmail.com> |
| Stability | experimental |
| Portability | GHC |
| Safe Haskell | None |
| Language | Haskell98 |
Data.Either.Strict
Description
The strict variant of the standard Haskell Either type and the
corresponding variants of the functions from Data.Either.
Note that the strict Either type is not an applicative functor, and
therefore also no monad. The reasons are the same as the ones for the
strict Maybe type, which are explained in Data.Maybe.Strict.
- data Either a b :: * -> * -> *
- isRight :: Either a b -> Bool
- isLeft :: Either a b -> Bool
- either :: (a -> c) -> (b -> c) -> Either a b -> c
- lefts :: [Either a b] -> [a]
- rights :: [Either a b] -> [b]
- partitionEithers :: [Either a b] -> ([a], [b])
- _Left :: Prism (Either a c) (Either b c) a b
- _Right :: Prism (Either c a) (Either c b) a b
Documentation
data Either a b :: * -> * -> *
The strict choice type.
lefts :: [Either a b] -> [a] Source
Analogous to lefts in Data.Either.
rights :: [Either a b] -> [b] Source
Analogous to rights in Data.Either.
partitionEithers :: [Either a b] -> ([a], [b]) Source
Analogous to partitionEithers in Data.Either.