Module rustc_data_structures::bitvec[][src]

Structs

BitArray

A very simple BitArray type.

BitIter
BitMatrix

A "bit matrix" is basically a matrix of booleans represented as one gigantic bitvector. In other words, it is as if you have rows bitvectors, each of length columns.

BitVector
SparseBitMatrix

A moderately sparse bit matrix: rows are appended lazily, but columns within appended rows are instantiated fully upon creation.