bitendianness
Bitendianness refers to the ordering of bits within a data unit or stream. It is distinct from byte endianness, which concerns the order of bytes in multi-byte values. Bitendianness describes whether bits are transmitted or stored in a most-significant-bit first (MSB-first) or least-significant-bit first (LSB-first) order within a byte or bit sequence.
Within a byte, MSB-first means the bit with the highest value is processed first, while LSB-first processes
Bitendianness is largely separate from the byte-level endianness that governs how multi-byte integers are arranged in
When designing interoperable data formats or hardware interfaces, it is important to specify the bit order