FlatHashMap.T

Mutable element reference with mutable constant key and value.

  1. struct T
    struct FlatHashMap(K, V = void, alias hasher = hashOf, string keyEqualPred = defaultKeyEqualPredOf!(K), Allocator = Mallocator, bool borrowChecked = false, bool useSmallLinearSearch = true, bool usePrimeCapacity = false)
    static if(hasValue)
    struct T {}
  2. alias T = K

Members

Variables

key
K key;
Undocumented in source.
value
V value;
Undocumented in source.

Meta