Method: Gtk::TreeIter#==

Defined in:
lib/gtk4/tree-iter.rb

#==(other) ⇒ Object



80
81
82
83
84
# File 'lib/gtk4/tree-iter.rb', line 80

def ==(other)
  other.is_a?(self.class) and
    @model == other.model and
    path == other.path
end