weak_set

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

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

@nogc
alias weak_set(Key) = SetImpl!(Key,
(
a
,
b
)
=> a < b
, false, false)

Meta