//! Provides new-type wrappers for collections that are indexed by a [`Idx`] rather
//! than `usize`.
//!
//! Inspired by [rustc_index](https://github.com/rust-lang/rust/blob/master/compiler/rustc_index/src/lib.rs).
pub use FrozenIndexVec;
pub use Idx;
pub use newtype_index;
pub use IndexSlice;
pub use IndexVec;