Returns the length of the internal associative array.
The length of the internal associative array.
MutexedAA!(string[int]) aa; aa.setup(); // important! assert(aa.length == 0); aa[1] = "one"; aa[2] = "two"; assert(aa.length == 2);
Returns the length of the internal associative array.