dup

Undocumented in source. Be warned that the author may not have intended to support it.

Examples

auto aa = ["k1": 2];
auto a2 = aa.dup;
aa["k2"] = 3;
assert("k2" !in a2);

Meta