Wraps the internal associative array's byKeyValue function.
A new range of all key-value pairs, as returned by the associative array's byKeyValue function.
RehashingAA!(int[string]) aa; aa["abc"] = 123; aa["def"] = 456; aa["ghi"] = 789; foreach (key, value; aa.byKeyValue) { writeln(key, " = ", value); }
Wraps the internal associative array's byKeyValue function.