File: container.rb

package info (click to toggle)
ruby-htree 0.8%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 464 kB
  • sloc: ruby: 5,931; makefile: 23
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