Skip to main content

Dictionary

Type Alias Dictionary 

Source
pub type Dictionary = IndexMap<String, Value>;
Expand description

An order-preserving plist dictionary.

Keys iterate in insertion order, matching how Apple property lists round-trip dictionary keys. Backed by IndexMap, so it carries the full map surface (get, insert, entry, keys, values, sort_keys, indexing).

Aliased Typeยง

pub struct Dictionary { /* private fields */ }