tiny.preserves.ValueHashMap
Defined in tiny.preserves.
A standard-library unmanaged hash map from values to values, keyed through ValueContext, with a maximum load of 80 percent.
Source
Source: lib/preserves/src/any.zig:57
zig
/// A standard-library unmanaged hash map from values to values, keyed through `ValueContext`, with/// a maximum load of 80 percent. Code that maps values to values by equality uses this map, so a/// set key matches whatever its storage order. Each call that grows the map takes the allocator./// The map stores each key and value as a copy of its outer struct, and it never copies or frees/// the storage they point to, so that storage has to outlive the map.pub const ValueHashMap = containers.ValueHashMap(embedded_mod.AnyEmbedded);Source: lib/preserves/src/root.zig:179
zig
pub const ValueHashMap = any.ValueHashMap;Audit
| Definitions | 1 |
|---|---|
| Public names | 1 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |