Parseff.LESourceLittle-endian binary parsers.
Read one byte as an unsigned integer (0–255).
Read one byte as a signed integer (−128–127).
Read 2 bytes as a little-endian signed 16-bit integer.
Read 2 bytes as a little-endian unsigned 16-bit integer.
Read 4 bytes as a little-endian signed 32-bit integer.
Read 8 bytes as a little-endian signed 64-bit integer.
Read 4 bytes as a little-endian IEEE 754 single-precision float.
Read 8 bytes as a little-endian IEEE 754 double-precision float.
int16 i matches exactly the 2 bytes that encode i in little-endian order. Fails if the bytes don't match.
int32 i matches exactly the 4 bytes that encode i in little-endian order. Fails if the bytes don't match.
int64 i matches exactly the 8 bytes that encode i in little-endian order. Fails if the bytes don't match.