base-3.0.1.0: Basic librariesSource codeContentsIndex
GHC.Word
Portabilitynon-portable (GHC Extensions)
Stabilityinternal
Maintainercvs-ghc@haskell.org
Description
Sized unsigned integral types: Word, Word8, Word16, Word32, and Word64.
Synopsis
data Word = W# Word#
data Word8 = W8# Word#
data Word16 = W16# Word#
data Word32 = W32# Word#
data Word64 = W64# Word64#
toEnumError :: Show a => String -> Int -> (a, a) -> b
fromEnumError :: Show a => String -> a -> b
succError :: String -> a
predError :: String -> a
uncheckedShiftL64# :: Word64# -> Int# -> Word64#
uncheckedShiftRL64# :: Word64# -> Int# -> Word64#
Documentation
data Word Source
A Word is an unsigned integral type, with the same size as Int.
Constructors
W# Word#
show/hide Instances
data Word8 Source
8-bit unsigned integer type
Constructors
W8# Word#
show/hide Instances
data Word16 Source
16-bit unsigned integer type
Constructors
W16# Word#
show/hide Instances
data Word32 Source
32-bit unsigned integer type
Constructors
W32# Word#
show/hide Instances
data Word64 Source
64-bit unsigned integer type
Constructors
W64# Word64#
show/hide Instances
toEnumError :: Show a => String -> Int -> (a, a) -> bSource
fromEnumError :: Show a => String -> a -> bSource
succError :: String -> aSource
predError :: String -> aSource
uncheckedShiftL64# :: Word64# -> Int# -> Word64#Source
uncheckedShiftRL64# :: Word64# -> Int# -> Word64#Source
Produced by Haddock version 2.0.0.0