public native values() as IList<V>
Returns the values in ascending key order.
Values ordered by their associated keys.
values = ts:{2: "two", 1: "one"} assert values.values() == i:["one", "two"]