recursive_each(&block)
Recursively traverse all nodes of this Gtk::TreeIter’s subtree (including self) and yield to them.
# File ext/json/lib/json/editor.rb, line 167 def recursive_each(&block) yield self each do |i| i.recursive_each(&block) end end