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