Crate succinct [] [src]

Succinct Data Structures for Rust

Usage

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

[dependencies]
succinct = "*"

to your Cargo.toml and

extern crate succinct;

to your crate root.

Structs

IntVec

A vector of k-bit unsigned integers, where k is dynamic.

IntVecBuilder

Builder for configuring and constructing an IntVec.

RankSupport

Add-on to BitVector to support fast rank queries.

Traits

BlockType

Types that can be used for IntVec storage.

Rank

Interface for types that support rank queries.

Select

Interface for types that support select queries.