{-# LANGUAGE NoImplicitPrelude #-}

module Papa.Base.Export.Data.Maybe(
  module P
) where

import Data.Maybe as P(
    Maybe(Nothing, Just)
  , maybe
  , isJust
  , isNothing
  , fromMaybe
  )