bitvec
bitvec copied to clipboard
A crate for managing memory bit by bit
I am using `bitvec` in my own project. I need the iterator that implement the `TrustedLen` in my API, such that I can do some optimization. Can I implement the...
Hello, I'm maybe wrong here and this is expected behavior, but when I load a byte from a slice with the indices [2..10] from a parent array, I get the...
Hello. I have found problem with method BitSlice::as_raw_slice(), it returns wrong value is some scenarios **System**: 6.1.1-arch1-1 GNU/Linux **rustc -V**: rustc 1.66.0 (69f9c33d7 2022-12-12) ```toml [dependencies] bitvec = "1.0.1" ```...
Currently, `iter_ones` and `iter_zeros` always begin from the first position (`front` is set to zero) and there is no easy way to begin iterating at a certain position. It would...
I'm on a project that is still using bitvec 0.22.3. I cannot be built anymore as it depends on funty 1.2, which got yanked. To reproduce: git clone https://github.com/filecoin-project/ec-gpu --branch...
@myrrlyn With the merge of [Radium PR 12](https://github.com/bitvecto-rs/radium/pull/12) the `bitvec` crate does not yet support `riscv32im`. Using Radium version = "0.7.1" would fix this. CC: @intoverflow @flaub
I'm trying to use Miri on a small codebase of mine which depends on `bitvec`, and I'm getting warnings like this: ``` warning: integer-to-pointer cast --> C:\Users\vihdz\.cargo\registry\src\index.crates.io-6f17d22bba15001f\bitvec-1.0.1\src\ptr\span.rs:277:37 | 277 |...
Hey, I am the maintainer of `bit-vec`. I can see that your crate is doing great too. For the sake of completeness, could you add a small optional feature for...
As the underlying code is performing fetch_(or/and)s this is perfectly valid to do. These could be moved into a new replace_aliased instead if desired, I have no real preference, this...