HybridHashSet
@safe
alias HybridHashSet(K, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!K, Allocator = Mallocator, Options options = Options.init) =
HybridHashMap!(
K,
void,
hasher,
keyEqualPred,
Allocator,
options)
nxt container hybrid_hashmap
aliasesenumsfunctionsstructstemplates
Hash set with in-place open-addressing, storing keys (elements) of type K.
Reuse HybridHashMap with its V-type set to void.