MutexedAA.rehash

Rehashes the internal associative array.

struct MutexedAA(AA : V[K], V, K)
rehash
()

Return Value

Type: auto

A reference to the rehashed internal array.

Examples

MutexedAA!(string[int]) aa;
aa.setup();  // important!

aa[1] = "one";
aa[2] = "two";
aa.rehash();