[project @ 2002-04-24 16:31:37 by simonmar]
[ghc-base.git] / Data / Word.hs
1 {-# OPTIONS -fno-implicit-prelude #-}
2 -----------------------------------------------------------------------------
3 -- |
4 -- Module      :  
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 :  portable
11 --
12 -- $Id: Word.hs,v 1.4 2002/04/24 16:31:43 simonmar Exp $
13 --
14 -- Sized unsigned integer types.
15 --
16 -----------------------------------------------------------------------------
17
18 module Data.Word
19         ( Word
20         , Word8
21         , Word16
22         , Word32
23         , Word64
24         -- instances: Eq, Ord, Num, Bounded, Real, Integral, Ix, Enum, Read,
25         -- Show, Bits, CCallable, CReturnable (last two are GHC specific.)
26         ) where
27
28 #ifdef __GLASGOW_HASKELL__
29 import GHC.Word
30 #endif