struct OrderedMap(K, V)
A simple data structure based on the built-in associative array, but with a fixed element order.
V[K] map
Underlying associative array for key-value storage.
K[] keys
Array of keys preserving insertion order.
const(V) get(K key, const(V) defaultValue) const
Safely returns the value associated with the given key.
If the key does not exist, returns defaultValue.