Map.opBinaryRight

struct Map(K, V, alias less = "a < b", bool allowDuplicates = false)
public nothrow @nogc inout
inout(V)*
opBinaryRight
(
string op
)
(
K key
)
if (
op == "in"
)

Return Value

Type: inout(V)*

A pointer to the value corresponding to this key, or null if not available. Live builtin associative arrays.

Meta