File: container.rb

package info (click to toggle)
ruby-htree 0.8%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 448 kB
  • ctags: 703
  • sloc: ruby: 5,931; makefile: 24
file content (8 lines) | stat: -rw-r--r-- 143 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
require 'htree/modules'

module HTree::Container
  # +children+ returns children nodes as an array.
  def children
    @children.dup
  end
end