The OpenD Programming Language

HashMap.opBinaryRight

Supports key in aa syntax.

struct HashMap(K, V, Allocator = Mallocator, alias hashFunction = generateHash!K, bool supportGC = shouldAddGCRange!K || shouldAddGCRange!V, bool storeHash = true)
inout nothrow @trusted
inout(V)*
opBinaryRight
(
string op
)
(
const K key
)
if (
op == "in"
)

Return Value

Type: inout(V)*

pointer to the value corresponding to the given key, or null if the key is not present in the HashMap.

Meta