1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{-# OPTIONS -fno-implicit-prelude #-}
-----------------------------------------------------------------------------
-- |
-- Module :
-- Copyright : (c) The University of Glasgow 2001
-- License : BSD-style (see the file libraries/core/LICENSE)
--
-- Maintainer : libraries@haskell.org
-- Stability : experimental
-- Portability : portable
--
-- Sized unsigned integer types.
--
-----------------------------------------------------------------------------
module Data.Word
( Word
, Word8
, Word16
, Word32
, Word64
-- instances: Eq, Ord, Num, Bounded, Real, Integral, Ix, Enum, Read,
-- Show, Bits, CCallable, CReturnable (last two are GHC specific.)
) where
#ifdef __GLASGOW_HASKELL__
import GHC.Word
#endif
|