each_name_of(bitmap)
yields each attribute name in bitmap
# File lib/rdoc/markup/attributes.rb, line 59 def each_name_of bitmap return enum_for __method__, bitmap unless block_given? @name_to_bitmap.each do |name, bit| next if bit == @special yield name.to_s if (bitmap & bit) != 0 end end