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 committed by Emil Fresk
parent 87917e059b
commit 1790c4f30f

View File

@ -76,9 +76,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;