finitebit
Finitebit is a fixed-width bit vector data type designed to represent a sequence of n bits where the width is determined at creation or by the type parameter. It emphasizes compact storage and predictable performance for low-level bit manipulation, making it suitable for systems programming, embedded contexts, and performance-critical code.
A finitebit value stores bits in a compact underlying representation, typically using an unsigned integer large
In practice, finitebit provides an API that can resemble fixed-width integers but with a focus on bitfield
Compared to dynamic bitsets that can grow, finitebit emphasizes a static size, predictable memory usage, and