tiny.preserves.Dictionary
Defined in tiny.preserves.
A slice of key and value entries, the storage of a dictionary value.
Source
Source: lib/preserves/src/any.zig:32
zig
/// A slice of key and value entries, the storage of a dictionary value. Code that walks a/// dictionary from the root functions names its storage with this type. Equality, order and hash/// read the entries in ascending order of their keys under `compare`, whatever the order of the/// slice. A dictionary built with `Value.initDictionary` keeps the caller's slice unchecked, so two/// equal keys in it go undetected. The `dictionary` constructor rejects them.pub const Dictionary = AnyValue.Dictionary;Source: lib/preserves/src/root.zig:172
zig
pub const Dictionary = any.Dictionary;Audit
| Definitions | 1 |
|---|---|
| Public names | 1 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |