HybridHashSet

Hash set with in-place open-addressing, storing keys (elements) of type K.

Reuse HybridHashMap with its V-type set to void.

@safe
alias HybridHashSet(K, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!K, Allocator = Mallocator, Options options = Options.init) = HybridHashMap!(K, void, hasher, keyEqualPred, Allocator, options)

See Also

HybridHashMap.

Meta