Crate id_set [] [src]

A bit-set implementation for use in id-map. Notable differences from bit-set are the IntoIter struct and retain() methods.

Structs

IdSet

A set of usize elements represented by a bit vector. Storage required is proportional to the maximum element in the set.

IntoIter

A consuming iterator over all elements in increasing order.

Iter

An iterator over all elements in increasing order.

Type Definitions

Id

The element type of the set.