Return the previous state of the hash.
immutable data = ["foo": 1]; immutable subject = new immutable(Hash!(K, V))(data); auto result = subject.insert("foo", 2).rollBack; assert(result["foo"] == 1);
See Implementation
Return the previous state of the hash.