Module rustc_data_structures::indexed_set[][src]

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Re-exports

use std::borrow::Borrow;
use std::borrow::BorrowMut;
use std::borrow::ToOwned;
use std::fmt;
use std::iter;
use std::marker::PhantomData;
use std::mem;
use std::ops::Deref;
use std::ops::DerefMut;
use std::ops::Range;
use std::slice;
use bitslice::BitSlice;
use bitslice::Word;
use bitslice::bitwise;
use bitslice::Union;
use bitslice::Subtract;
use bitslice::Intersect;
use indexed_vec::Idx;
use rustc_serialize;

Structs

IdxSet [
Experimental
]

Represents a set (or packed family of sets), of some element type E, where each E is identified by some unique index type T.

IdxSetBuf [
Experimental
]

Represents a set (or packed family of sets), of some element type E, where each E is identified by some unique index type T.

Iter [
Experimental
]