0a8e51264c59ab757a75fae71438168f39165d5f
[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 -- Sized unsigned integer types.
13 --
14 -----------------------------------------------------------------------------
15
16 module Data.Word
17         ( Word
18         , Word8
19         , Word16
20         , Word32
21         , Word64
22         -- instances: Eq, Ord, Num, Bounded, Real, Integral, Ix, Enum, Read,
23         -- Show, Bits, CCallable, CReturnable (last two are GHC specific.)
24         ) where
25
26 #ifdef __GLASGOW_HASKELL__
27 import GHC.Word
28 #endif