Removes a key from the aa associative array by merely invoking .remove.
The key to remove.
Whatever aa.remove(key) returns.
RehashingAA!(int[string]) aa; aa["abc"] = 123; assert("abc" in aa); aa.remove("abc"); assert("abc" !in aa);
Removes a key from the aa associative array by merely invoking .remove.