HashTable.this

Constructor.

Parameters

n size_t

Minimum number of buckets.

allocator Allocator

Allocator.

Precondition: allocator !is null.

Examples

auto hashTable = HashTable!(string, int)(5);
assert(hashTable.capacity == 7);

Meta