MapImpl.opIndex

struct MapImpl(K, V, alias less = KeyCompareDefault!Key, bool allowDuplicates = false, bool ownsMemory = false)
@nogc @trusted ref inout
inout(V)
opIndex
(
K key
)

Return Value

Type: inout(V)

A reference to the value corresponding to this key. Null pointer crash if key doesn't exist.

Meta