unpack-le ( bytes str -- seq )
Packing and Unpacking Binary Data

Prev:unpack-be ( bytes str -- seq )
Next:read-packed-native ( str -- seq )


Vocabulary
pack

Inputs
bytesa byte sequence
stra format string


Outputs
seqa sequence of field values


Word description
Reads packed data from bytes according to the field formats described by str and outputs a sequence containing the unpacked values. Packed data is assumed to be little-endian.

Definition