ajhc-0.8.0.1: lib/haskell98/Maybe.hs
module Maybe (
isJust, isNothing,
fromJust, fromMaybe, listToMaybe, maybeToList,
catMaybes, mapMaybe,
-- ...and what the Prelude exports
Maybe(Nothing, Just),
maybe
) where
import Data.Maybe