Maybe

The plain source file for module Maybe is not available.
module Maybe (
    isJust, isNothing,
    fromJust, fromMaybe, listToMaybe, maybeToList,
    catMaybes, mapMaybe,

    -- ...and what the Prelude exports
    Maybe(Nothing, Just),
    maybe
  ) where

import Data.Maybe

Index

(HTML for this module was generated on 2006-08-12. About the conversion tool.)