//! Direct maps and set, which take storage proportional to the maximum id.
//!
//! This is roughly equivalent to a `Vec<Option<T>>` for the map and bitset for the set.
pub
pub use DirectIdMap;
pub use DirectIdSet;
use UnsignedPrimInt;
/// Panic indicating that an id would exhaust available memory.
!