Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_2_180) is shown here.
recursive_each(&block)
public
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