ordinal-map 0.1.10

Ordinal trait to map values to integers and efficient maps and sets for such types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Total maps (maps that have a value for every possible key).

pub(crate) mod array_map;
pub(crate) mod iter;
pub(crate) mod map;

pub use crate::map::total::array_map::OrdinalTotalArrayMap;
pub use crate::map::total::iter::IntoIter;
pub use crate::map::total::iter::IntoIterArray;
pub use crate::map::total::iter::Iter;
pub use crate::map::total::iter::IterMut;
pub use crate::map::total::map::OrdinalTotalMap;