Wraps the internal associative array's byValue function.
The Voldemort returned from the associative array's byValue function.
RehashingAA!(int[string]) aa; aa["abc"] = 123; aa["def"] = 456; aa["ghi"] = 789; foreach (value; aa.byValue) { writeln(value); }
Wraps the internal associative array's byValue function.