class RD::List

Attributes

items[R]

Public Class Methods

new() click to toggle source
# File lib/rd/list.rb, line 9
def initialize
  @items = []
end

Public Instance Methods

children() click to toggle source
# File lib/rd/list.rb, line 15
def children
  @items
end