Crate bitset_matrix

Crate bitset_matrix 

Source
Expand description

A compact, row-major 2D bitset matrix with fast row-wise bitwise operations.

The matrix stores bits in contiguous u64 words per row. Row-wise operations (AND/OR/XOR) are implemented as word-wise loops for speed. Column-wise operations are supported but are naturally slower because bits are packed across words.

Structsยง

BitMatrix
ColIter
Column iterator type
RowIter
Row iterator type