manatee-core-0.0.1: The core of Manatee.

Manatee.Toolkit.General.Either

Synopsis

Documentation

mapLeft :: (t1 -> a) -> Either t1 t -> Either a tSource

Map left.

mapRight :: (t1 -> b) -> Either t t1 -> Either t bSource

Map right.

applyEitherLeft :: (a -> c) -> Either a b -> Maybe cSource

Apply either left.

applyEitherRight :: (b -> c) -> Either a b -> Maybe cSource

Apply either right.