class AnyValue::SortedArray

It’s the same as:

sorted_array = array_of(increasing)

Public Instance Methods

==(o) click to toggle source
# File lib/any_value.rb, line 173
def ==(o)
  o == o.sort
end
to_ary() click to toggle source
# File lib/any_value.rb, line 177
def to_ary
  self
end