weak_multiset

An associative container which contains sets of objects of type Key.

A multiset may contain multiple entries with the same Key value.

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

@nogc
alias weak_multiset(Key) = SetImpl!(Key,
(
a
,
b
)
=> a < b
, true, true)

Meta