31 releases

Uses old Rust 2015

0.11.1 Mar 19, 2020
0.11.0 Jan 16, 2019
0.10.0 Jun 20, 2018
0.4.2 Mar 31, 2018

#196 in Data structures

Download history 36397/week @ 2024-07-22 38287/week @ 2024-07-29 60427/week @ 2024-08-05 43174/week @ 2024-08-12 36578/week @ 2024-08-19 39069/week @ 2024-08-26 34999/week @ 2024-09-02 32215/week @ 2024-09-09 140067/week @ 2024-09-16 80042/week @ 2024-09-23 408525/week @ 2024-09-30 707712/week @ 2024-10-07 579863/week @ 2024-10-14 155748/week @ 2024-10-21 52207/week @ 2024-10-28 47086/week @ 2024-11-04

971,278 downloads per month
Used in 1,650 crates (55 directly)

MIT/Apache

165KB
3.5K SLoC

bv-rs: bit-vectors and bit-slices for Rust

Build Status Crates.io License: MIT License: Apache 2.0

The main type exported by the library, BitVec, is a packed, growable bit-vector. Its API mirrors that of Vec where reasonable. The library also defines slice operations that return BitSlice or BitSliceMut, akin to Rust’s array slices but for bit-vectors. A common API to bit-vectors and bit-slices is provided by the Bits, BitsMut, and BitsPush traits, which also allow treating as bit-vectors all primitive unsigned integer types (uN), and vectors and slices thereof, as well as unpacked vectors and slices of bool.

Usage

It’s on crates.io, so you can add

[dependencies]
bv = "0.11.1"

to your Cargo.toml and

extern crate bv;

to your crate root.

This crate supports Rust version 1.31 and newer.

Dependencies

~165KB