OpenHashMap
@safe
alias OpenHashMap(K, V, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!K, alias Allocator = Mallocator.instance, bool borrowChecked = false, bool useSmallLinearSearch = true, bool usePrimeCapacity = false) =
OpenHashMapOrSet!(
K,
V,
hasher,
keyEqualPred,
Allocator,
borrowChecked,
useSmallLinearSearch,
usePrimeCapacity)
nxt open_hashmap_or_hashset
aliasesenumsfunctionsstructstemplatesvariables
Immutable hash map storing keys of type K and values of type V.