Allows for casting this into the base associative array type.
Type to cast to, here the same as the type of aa.
The internal associative array.
RehashingAA!(int[string]) aa; aa["abc"] = 123; auto native = cast(int[string])aa; assert(native["abc"] == 123);
Allows for casting this into the base associative array type.