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, BorrowCheckFlag borrowCheckFlag = BorrowCheckFlag.no, uint linearSearchMaxSize = 64, PrimeCapacityFlag primeCapacityFlag = PrimeCapacityFlag.no) = HybridHashMap!(K, void, hasher, keyEqualPred, Allocator, borrowCheckFlag, linearSearchMaxSize, primeCapacityFlag)

See Also

HybridHashMap.

Meta