This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
each_name_of(bitmap)
public
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