Array size.
Static array.
Allocator.
Precondition: allocator !is null.
alias KeyValue = HashTable!(string, int).KeyValue; auto hashTable = HashTable!(string, int)([KeyValue("one", 1), KeyValue("two", 2)]); assert(hashTable["one"] == 1); assert(hashTable["two"] == 2);
Initializes the hash table from a static array.