packages feed

cabal-gild-0.3.0.1: source/library/CabalGild/Extra/Either.hs

module CabalGild.Extra.Either where

-- | Converts an 'Either' to a 'Maybe'.
hush :: Either x a -> Maybe a
hush = either (const Nothing) Just