Adds a list of methods to out with a heading of
name
# File lib/rdoc/ri/driver.rb, line 437
def add_method_list out, methods, name
return unless methods
out << RDoc::Markup::Heading.new(1, "#{name}:")
out << RDoc::Markup::BlankLine.new
out.push(*methods.map do |method|
RDoc::Markup::Verbatim.new ' ', method
end)
out << RDoc::Markup::BlankLine.new
end