class Charty::DaruIndex

Public Instance Methods

==(other) click to toggle source
Calls superclass method Charty::Index#==
# File lib/charty/index.rb, line 134
def ==(other)
  case other
  when DaruIndex
    values == other.values
  else
    super
  end
end
length() click to toggle source
# File lib/charty/index.rb, line 130
def length
  size
end