FlatHashSet
@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)
nxt container flat_hashmap
aliasesenumsfunctionsstructstemplatesvariables
Hash set with in-place open-addressing, storing keys (elements) of type K.
Reuse FlatHashMap with its V-type set to void.