FixedKeyMap.opIn_r

Checks whether a key is in the map, and returns a pointer to the corresponding value, or null if the key does not exist.

class FixedKeyMap(K, V)
V*
opIn_r
(
const(K) key
)

Parameters

key const(K)

key to look up

Return Value

Type: V*

pointer to value corresponding to key, or null if key not in map

Meta