Array
Now for the actual XML parsing stuff for Nmap::Parser ...
# File lib/nmap/parser.rb, line 1730 def collect_tags(name) self.map { |tag| yield tag if match(tag, name) }.compact end
# File lib/nmap/parser.rb, line 1726 def each_tag(name) self.each { |tag| yield tag if match(tag, name) } end
# File lib/nmap/parser.rb, line 1734 def find_tag(name) self.find { |tag| match(tag, name) } end
[Validate]
Generated with the Darkfish Rdoc Generator 2.