[project @ 2001-06-28 14:15:04 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/core/LICENSE)
7 -- 
8 -- Maintainer  :  libraries@haskell.org
9 -- Stability   :  experimental
10 -- Portability :  non-portable
11 --
12 -- $Id: Bool.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
13 --
14 -- The Bool type and related functions.
15 --
16 -----------------------------------------------------------------------------
17
18 module Data.Bool (
19    Bool(..),
20    (&&),        -- :: Bool -> Bool -> Bool
21    (||),        -- :: Bool -> Bool -> Bool
22    not,         -- :: Bool -> Bool
23    otherwise,   -- :: Bool
24   ) where
25
26 #ifdef __GLASGOW_HASKELL__
27 import GHC.Base
28 #endif