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