Returns an array of all the values in the hash.
{ immutable data = ["foo": 1]; immutable subject = new immutable(Hash!(string, int))(data) .insert("bar", 2); assert(subject.values[0] == 2); assert(subject.values[1] == 1); }
See Implementation
Returns an array of all the values in the hash.