Skip to content

Commit 8510bac

Browse files
authored
Add a fallible-allocation-only IndexMap collection (#12574)
1 parent 7e0331c commit 8510bac

3 files changed

Lines changed: 944 additions & 0 deletions

File tree

crates/environ/src/collections.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
mod entity_set;
44
mod hash_map;
55
mod hash_set;
6+
mod index_map;
67
mod primary_map;
78
mod secondary_map;
89

910
pub use entity_set::EntitySet;
1011
pub use hash_map::HashMap;
1112
pub use hash_set::HashSet;
13+
pub use index_map::IndexMap;
1214
pub use primary_map::PrimaryMap;
1315
pub use secondary_map::SecondaryMap;
1416
pub use wasmtime_core::alloc::{String, TryClone, TryNew, Vec, try_new};

0 commit comments

Comments
 (0)