FlatHashSet

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

Reuse FlatHashMap with its V-type set to void.

@safe
alias FlatHashSet(K, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!K, Allocator = Mallocator, bool borrowChecked = false, bool useSmallLinearSearch = true, bool usePrimeCapacity = false) = FlatHashMap!(K, void, hasher, keyEqualPred, Allocator, borrowChecked, useSmallLinearSearch, usePrimeCapacity)

See Also

FlatHashMap.

Meta