get
fn
inout(V) get(K, V)(inout(V[K]) aa, K key, lazy inout(V) defaultValue)If key is in aa, returns corresponding value; otherwise it evaluates and returns defaultValue.
Parameters
aa | The associative array. |
key | The key. |
defaultValue | The default value. |
Returns
The value.
fn
inout(V) get(K, V)(inout(V[K]) * aa, K key, lazy inout(V) defaultValue)ditto