OpenHashSet

Immutable hash set storing keys of type K.

@safe
alias OpenHashSet(K, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!K, alias Allocator = Mallocator.instance, bool borrowChecked = false, bool useSmallLinearSearch = true, bool usePrimeCapacity = false) = OpenHashMapOrSet!(K, void, hasher, keyEqualPred, Allocator, borrowChecked, useSmallLinearSearch, usePrimeCapacity)

Meta