Clears the internal associative array.
MutexedAA!(string[int]) aa; aa.setup(); // important! aa[1] = "one"; aa[2] = "two"; assert(aa.has(1)); aa.clear(); assert(!aa.has(2));
Clears the internal associative array.