bitvec icon indicating copy to clipboard operation
bitvec copied to clipboard

A crate for managing memory bit by bit

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

Hi, for maximum speed, could it be possible to chunk by N bits and extract it to a u8,u16.. while in the unsafe realm for maximum speed? Currently working on...

I presumed this was similar to Vec. However, it is not. Not sure why. Lots of documentation that I don't really want to read. Was hoping for implementation around standard...

This repo uses `use tap::Tap` which [only works on Tap 1.0.1, not 1.0.0](https://github.com/myrrlyn/tap/pull/1). Running `cargo +nightly generate-lockfile -Zminimal-versions && cargo build` causes this project to break without it

Using a recent `rustc 1.91.0-nightly (05f5a58e8 2025-08-19)`, building the tests fails: ``` % cargo +nightly test error[E0308]: mismatched types --> src/slice/tests/api.rs:30:10 | 30 | assert!(bits.last().unwrap()); | ^^^^^^^^^^^^^^^^^^^^ expected `bool`, found...

Slices should return the same `load_be`/`load_le` values regardless of whether they are aligned to bytes (at least that's what I assume) But currently, they don't: ```rust use bitvec::prelude::*; fn main()...

# Compilation failing on Rust nightly due to `wyz` dependency ## Rust Version nightly-x86_64-unknown-linux-gnu unchanged - rustc 1.91.0-nightly (6ba0ce409 2025-08-21) ## Issue ### `wyz` dependency compilation failing with following trace...