Skip to documentation
SLOP

tiny.preserves.ValueHashMap

Reference 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.

No direct callersNo direct callstiny.preservesValueHashMap
Static calls · unresolved targets: unknown · external targets: unknown.

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

Definitions1
Public names1
Members0
Version26.7.0
Revisiondaab053ee433