A key value data structure.API ReferenceStructsstruct DictNode<Value>One entry in the dictionary linked list.struct Dict<Value>A string-keyed dictionary over region-allocated ('heap) nodes. Insertion prepends in O(1), duplicate keys shadow older entries, and lookup is linear.
struct Dict<Value>A string-keyed dictionary over region-allocated ('heap) nodes. Insertion prepends in O(1), duplicate keys shadow older entries, and lookup is linear.