A List of ListItems
Appends item to the list
# File lib/rdoc/markup/list.rb, line 28
28: def << item
29: @items << item
30: end
# File lib/rdoc/markup/list.rb, line 38
38: def accept visitor
39: visitor.accept_list_start self
40:
41: @items.each do |item|
42: item.accept visitor
43: end
44:
45: visitor.accept_list_end self
46: end
Is the list empty?
# File lib/rdoc/markup/list.rb, line 51
51: def empty?
52: @items.empty?
53: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.