Returns a new dynamic array of all the values in the internal associative array.
A new V[] of all the AA values.
MutexedAA!(int[int]) aa; aa.setup(); // important! aa[1] = 42; aa[2] = 99; auto values = aa.values; assert(values.canFind(42)); assert(values.canFind(99)); assert(!values.canFind(0));
Returns a new dynamic array of all the values in the internal associative array.