Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 560 Bytes

Lsb0.md

File metadata and controls

13 lines (9 loc) · 560 Bytes

Least-Significant-First Bit Traversal

This type orders the bits in an element with the least significant bit first and the most significant bit last, in contiguous order across the element.

The guide has a chapter with more detailed information on the memory representation this produces.

This is the default type parameter used throughout the crate. If you do not have a desired memory representation, you should continue to use it, as it provides the best codegen for bit manipulation.