dict

A key value data structure.

API Reference

Structs

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