planet-mitchell-0.0.0: src/Bool.hs
{-# LANGUAGE ExplicitNamespaces #-}
module Bool
( -- * Boolean
Bool(..)
, (&&)
, (||)
, not
, otherwise
, bool
-- ** Newtypes
, All(..)
, Any(..)
-- * Boolean type functions
, If
, type (&&)
, type (||)
, Not
) where
import Data.Bool
import Data.Monoid
import Data.Type.Bool