X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Data%2FEither.hs;h=0c5e15347883878eca0ee28534ecd727d1ef24b5;hb=b9b6e38a1ebb5f05b382609fe0776d91cdd1090b;hp=d8a35b57a912a1b4bdbb2544d741e46e5d21bce5;hpb=f7a485978f04e84b086f1974b88887cc72d832d0;p=haskell-directory.git diff --git a/Data/Either.hs b/Data/Either.hs index d8a35b5..0c5e153 100644 --- a/Data/Either.hs +++ b/Data/Either.hs @@ -1,4 +1,4 @@ -{-# OPTIONS -fno-implicit-prelude #-} +{-# OPTIONS_GHC -fno-implicit-prelude #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Either @@ -20,10 +20,23 @@ module Data.Either ( #ifdef __GLASGOW_HASKELL__ import GHC.Base -#endif +{-| + +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\"). +-} data Either a b = Left a | Right b deriving (Eq, Ord ) +-- | 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@. either :: (a -> c) -> (b -> c) -> Either a b -> c either f _ (Left x) = f x either _ g (Right y) = g y +#endif /* __GLASGOW_HASKELL__ */