We manage a set of attributes. Each attribute has a symbol name and a bit value.
Special attribute type. See RDoc::Markup#add_special
Returns a string representation of bitmap
# File lib/rdoc/markup/attribute.rb, line 31 def self.as_string(bitmap) return "none" if bitmap.zero? res = [] @@name_to_bitmap.each do |name, bit| res << name if (bitmap & bit) != 0 end res.join(",") end
Generated with the Darkfish Rdoc Generator 2.