multiset

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

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

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

Meta