class XMLScan::XMLParser::AttributeChecker
Public Instance Methods
check_unique(name)
click to toggle source
AttributeChecker
inherits Hash only for speed.
# File lib/xmlscan/parser.rb 20 def check_unique(name) 21 not key? name and store(name, true) 22 end