Expand description
contains Bitmap and MutableBitmap, containers of bool.
Modules§
- General utilities for bitmaps representing items where LSB is the first item.
Structs§
- An immutable container semantically equivalent to
Arc<Vec<bool>>but represented asArc<Vec<u8>>where each boolean is represented as a single bit. - This crates’ equivalent of
std::vec::IntoIterforBitmap. - A container of booleans.
MutableBitmapis semantically equivalent toVec<bool>.
Functions§
- Compute bitwise AND operation
- Apply a bitwise operation
opto two inputs and return the result as aBitmap. - Apply a bitwise binary operation to a
MutableBitmap. - Compute bitwise OR operation
- Apply a bitwise operation
opto four inputs and return the result as aBitmap. - Apply a bitwise operation
opto three inputs and return the result as aBitmap. - Apply a bitwise operation
opto one input and return the result as aBitmap. - Applies a function to every bit of this
MutableBitmapin chunks - Compute bitwise XOR operation