Dictionary.get

Returns value of key. * Params: * key : key * notFoundValue : value to return if key has not been found

struct Dictionary(K, V)
@nogc
V
get
(
K key
,
V notFoundValue = V.init
)

Meta