Navigation
Usage Information
Developer Information
Addon and Plugin Documentation
Addons
Plugins
Navigation
Usage Information
Developer Information
Addon and Plugin Documentation
Addons
Plugins
This is an old revision of the document!
The bits namespace contains functions that interact with bits and bytes data.
You can access these functions via:
ashita.bits.
Unpacks bit data. (Big Endian)
number ashita.bits.unpack_be(data, offset, len);
number ashita.bits.unpack_be(data, byteOffset, bitOffset, len);
Unpacks bit data. (Little Endian)
number ashita.bits.unpack_le(data, offset, len);
number ashita.bits.unpack_le(data, byteOffset, bitOffset, len);