each_name_of(bitmap)
yields each attribute name in bitmap
# File lib/rdoc/markup/inline.rb, line 46 def self.each_name_of(bitmap) @@name_to_bitmap.each do |name, bit| next if bit == SPECIAL yield name.to_s if (bitmap & bit) != 0 end end