class Gtk::TreePath

Public Instance Methods

<=>(other) click to toggle source
# File lib/gtk3/tree-path.rb, line 21
def <=>(other)
  if other.is_a?(self.class)
    compare(other)
  else
    nil
  end
end