4.27. Word

This library provides unsigned integers of various sizes. The types supported are as follows:

type number of bits
Word8 8
Word16 16
Word32 32
Word64 64

For each type W above, we provide the following functions and instances. The type I refers to the signed integer type of the same size.

data W            -- Unsigned Ints
instance Eq       W
instance Ord      W
instance Show     W
instance Read     W
instance Bounded  W
instance Num      W
instance Real     W
instance Integral W
instance Enum     W
instance Ix       W
instance Bits     W

4.27.1. Notes

4.27.2. Implementation notes