Expand description
Typed hash map for v2 runtime.
TypedMap<K, V> is a #[repr(C)] open-addressing hash table with linear
probing. The compiler monomorphizes: HashMap<string, number> and
HashMap<string, i32> are different TypedMap instantiations.
Concrete type aliases are provided for common instantiations used by FFI/JIT:
TypedMapStringF64—HashMap<string, number>TypedMapStringI64—HashMap<string, i64>TypedMapStringPtr—HashMap<string, *const u8>