Converts the associtave array to a common Dlang associative array.
Complexity: O(n).
StringMap!int map = ["k": 1]; int[string] aa = map.toAA; assert(aa["k"] == 1);
See Implementation
Converts the associtave array to a common Dlang associative array.
Complexity: O(n).