Create a new hash with the passed in value set.
New updated hash object with value inserted.
immutable data = ["foo": V(1)]; immutable subject = new immutable(Hash!(string, int))(data); auto result = subject.insert("bar", 2);
See Implementation
Create a new hash with the passed in value set.