RehashingAA.byValue

Wraps the internal associative array's byValue function.

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

Return Value

Type: auto

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

Examples

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

foreach (value; aa.byValue)
{
    writeln(value);
}