Word8

8-bit unsigned integer type
8-bit unsigned integer type
Word8 library to be used with Data.ByteString. All function assumes that Word8 is encoded in Latin-1 (ISO-8859-1). All utility functions are supposed to work as if those of Char. Exceptions are described in the function documentations. Base library 4.7 (GHC 7.8) or earlier is based on Unicode 6. Base library 4.8 (GHC 7.10) or later is based on Unicode 7. isLower, isSymbol and isPunctuation behave differently.
Simple, efficient combinator parsing for ByteString strings.
Encode a single unsigned byte as-is.
Encoding single unsigned bytes as-is.
Match a specific byte.
Generates a random byte in the given [inclusive,inclusive] range. This is a specialization of integral, offered for convenience.
Parse a Word8.
Decode a Word8 from a Dhall Natural.
>>> input word8 "42"
42
Word8 library Word8 library to be used with Data.ByteString
Requires exactly 1 byte.
Codec for word8 values.
Unsigned 8-bit word.
Accept any byte. Pre-release
Stream a Word8. Pre-release
Construct a BV from a Word8.
>>> let buf = pack [1,2,3,4,5,6,7,8]

>>> word8 buf
1
Read the next 1 byte and assert its value as a Word8.