OpenHashMap

Immutable hash map storing keys of type K and values of type V.

@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)

Meta