Creates a new associative array of the same size and copies the contents of the associative array into it.
The associative array.
auto aa = ["k1": 2]; auto a2 = aa.dup; aa["k2"] = 3; assert("k2" !in a2);
See Implementation
Creates a new associative array of the same size and copies the contents of the associative array into it.