Skip to main content

wasmtime_environ/
collections.rs

1//! Fallible, OOM-handling collections.
2
3mod entity_set;
4mod primary_map;
5mod secondary_map;
6
7pub use entity_set::EntitySet;
8pub use primary_map::PrimaryMap;
9pub use secondary_map::SecondaryMap;
10pub use wasmtime_core::alloc::{TryNew, Vec, try_new};