Returns the internal associative array, for when the wrapper is insufficient.
The internal associative array.
MutexedAA!(string[int]) aa; aa.setup(); // important! aa[1] = "one"; aa[2] = "two"; aa[3] = "three"; foreach (immutable k, const v; aa.aaOf) { // ... }
Returns the internal associative array, for when the wrapper is insufficient.