indexmap: expose PowerOfTwo, Bucket and Pos

This change allows the create custom structs with size arguments outside
the heapless crate itself.
This commit is contained in:
Willem 2020-04-22 09:44:26 +02:00
parent 3d20301aec
commit 7a369f3e5c

View File

@ -68,9 +68,9 @@
#![deny(warnings)]
pub use binary_heap::BinaryHeap;
pub use generic_array::typenum::consts;
pub use generic_array::typenum::{consts, PowerOfTwo};
pub use generic_array::ArrayLength;
pub use indexmap::{FnvIndexMap, IndexMap};
pub use indexmap::{Bucket, FnvIndexMap, IndexMap, Pos};
pub use indexset::{FnvIndexSet, IndexSet};
pub use linear_map::LinearMap;
pub use string::String;