Returns an updated hash with a key value removed from the hash.
immutable data = ["foo": 1]; immutable subject = new immutable(Hash!(string, int))(data); auto result = subject.remove("foo"); assert(result["foo"].isNull);
See Implementation
Returns an updated hash with a key value removed from the hash.