bitvec icon indicating copy to clipboard operation
bitvec copied to clipboard

A crate for managing memory bit by bit

Results 100 bitvec issues
Sort by recently updated
recently updated
newest added

`BitStore` is constrained to only be implemented on types guaranteed to have a bus alignment no less than their register width. This restriction is necessary in order to keep the...

The following function considers a `Vec` as a binary matrix with bits packed into the `usize` and reduces the first row of that matrix (meant to be representative of the...

This crate is quite popular (congrats!) but it depends on the [wyz](https://lib.rs/crates/wyz) crate, which is a rather odd collection of random bits of code. The wyz crate also has a...

Not 100% sure how this would be fixed, it appears to be due to pulling a field pointer out of the ZST slice stored in `BitSpan`. However, due to the...

I am new to programming rust. I am looking at this crate (bitvecto-rs/bitvec). I see that there are bitsafe types which are mutable (https://docs.rs/bitvec/latest/bitvec/access/trait.BitSafe.html). These bits are "volatile", which makes...

Given a BitArray `B`, I would like to efficiently iterate over all BitArrays that have a subset of `B`s ones set. For example, the subsets of `00011100` are: ``` 00000000...

Rustdoc doesn't correctly handle a backquoted literal that crosses a line break, so give it a line to itself.

Hello, if you run the below code you can see that while these should return the same value, the second instance returns `[0x7, 0x80]`. ```rust use bitvec::prelude::*; assert_eq!(bitvec::bits![u8, Msb0; 0,...

the link: https://bitvecto-rs.github.io/bitvec/memory-representation from here: https://docs.rs/bitvec/latest/bitvec/order/struct.Lsb0.html is dead.