weak_map

An associative container which contains key-value pairs.

Notes: Weak types do not own the memory of their contents. It is up to you to free any indicies.

@nogc
alias weak_map(Key, Value) = MapImpl!(Key, Value,
(
a
,
b
)
=> a < b
, false, false)

Meta