fay-base-0.21.1.0: The base package for Fay.

Safe HaskellNone
LanguageHaskell98

Data.Either

Description

Either operations.

Synopsis

Documentation

whenLeft :: Either a b -> (a -> Fay c) -> Fay (Maybe c) Source #

Basically forM.

whenRight :: Either a b -> (b -> Fay c) -> Fay (Maybe c) Source #

Basically forM.

isLeft :: Either a b -> Bool Source #

Usual isLeft.

isRight :: Either a b -> Bool Source #

Usual isRight.