attoparsec-binary-0.1: Binary processing extensions to Attoparsec.

Data.Attoparsec.Binary

Description

Binary processing extensions to Attoparsec.

Synopsis

Documentation

anyWord16be :: Parser Word16Source

Match any 16-bit big-endian word.

anyWord16le :: Parser Word16Source

Match any 16-bit little-endian word.

anyWord32be :: Parser Word32Source

Match any 32-bit big-endian word.

anyWord32le :: Parser Word32Source

Match any 32-bit little-endian word.

anyWord64be :: Parser Word64Source

Match any 64-bit big-endian word.

anyWord64le :: Parser Word64Source

Match any 64-bit little-endian word.

word16be :: Word16 -> Parser Word16Source

Match a specific 16-bit big-endian word.

word16le :: Word16 -> Parser Word16Source

Match a specific 16-bit little-endian word.

word32be :: Word32 -> Parser Word32Source

Match a specific 32-bit big-endian word.

word32le :: Word32 -> Parser Word32Source

Match a specific 32-bit little-endian word.

word64be :: Word64 -> Parser Word64Source

Match a specific 64-bit big-endian word.

word64le :: Word64 -> Parser Word64Source

Match a specific 64-bit little-endian word.