MapImpl.opBinaryRight

struct MapImpl(K, V, alias less = KeyCompareDefault!Key, bool allowDuplicates = false, bool ownsMemory = false)
@nogc @trusted 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