[project @ 2002-05-09 13:16:29 by simonmar]
[ghc-base.git] / Data / Bool.hs
1 {-# OPTIONS -fno-implicit-prelude #-}
2 -----------------------------------------------------------------------------
3 -- |
4 -- Module      :  Data.Bool
5 -- Copyright   :  (c) The University of Glasgow 2001
6 -- License     :  BSD-style (see the file libraries/base/LICENSE)
7 -- 
8 -- Maintainer  :  libraries@haskell.org
9 -- Stability   :  experimental
10 -- Portability :  portable
11 --
12 -- The Bool type and related functions.
13 --
14 -----------------------------------------------------------------------------
15
16 module Data.Bool (
17    Bool(..),
18    (&&),        -- :: Bool -> Bool -> Bool
19    (||),        -- :: Bool -> Bool -> Bool
20    not,         -- :: Bool -> Bool
21    otherwise,   -- :: Bool
22   ) where
23
24 #ifdef __GLASGOW_HASKELL__
25 import GHC.Base
26 #endif