# File lib/mail/parsers/rfc2822.rb, line 2862 def comments comments = [] dig_comments(comments, elements) comments end
# File lib/mail/parsers/rfc2822.rb, line 2853 def dig_comments(comments, elements) elements.each { |elem| if elem.respond_to?(:comment) comments << elem.comment end dig_comments(comments, elem.elements) if elem.elements } end
[Validate]
Generated with the Darkfish Rdoc Generator 2.