utility-ht-0.0.17.1: Various small helper functions for Lists, Maybes, Tuples, Functions
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Either.HT

Documentation

mapLeft :: (a -> b) -> Either a c -> Either b c Source #

mapRight :: (b -> c) -> Either a b -> Either a c Source #

mapBoth :: (a -> c) -> (b -> d) -> Either a b -> Either c d Source #

swap :: Either a b -> Either b a Source #