[][src]Module bitvec::vec

BitVec structure

This module holds the main working type of the library. Clients can use BitSlice directly, but BitVec is much more useful for most work.

The BitSlice module discusses the design decisions for the separation between slice and vector types.

Structs

BitVec

A compact Vec of bits, whose cursor and storage type can be customized.

Drain

State keeper for draining iteration.

IntoIter

A consuming iterator for BitVec.

Splice

A splicing iterator for BitVec.