Method: Gtk::TreeIter#each
- Defined in:
- lib/vendor/json_pure/lib/json/editor.rb
#each ⇒ Object
Traverse each of this Gtk::TreeIter instance’s children and yield to them.
161 162 163 |
# File 'lib/vendor/json_pure/lib/json/editor.rb', line 161 def each n_children.times { |i| yield nth_child(i) } end |