RehashingAA.byKey

Wraps the internal associative array's byKey function.

struct RehashingAA(AA : V[K], V, K)
inout
byKey
()

Return Value

Type: auto

The Voldemort returned from the associative array's byKey function.

Examples

RehashingAA!(int[string]) aa;
aa["abc"] = 123;
aa["def"] = 456;
aa["ghi"] = 789;

foreach (key; aa.byKey)
{
    writeln(key);
}