Convenience helper to instantiate a RehashingAA instance with an existing associative array.
The template parameters to instantiate RehashingAA is inferred from the passed associative array.
Original associative array.
A new RehashingAA instance based on the passed associative array.
{ auto orig = [ "abc" : 123, "def" : 456, "ghi" : 789 ]; auto aa = rehashingAA(orig); assert("abc" in aa); assert("jkl" !in aa); }
Convenience helper to instantiate a RehashingAA instance with an existing associative array.
The template parameters to instantiate RehashingAA is inferred from the passed associative array.