Object
We manage a set of attributes. Each attribute has a symbol name and a bit value.
Special attribute type. See RDoc::Markup#add_special
# File lib/rdoc/markup/inline.rb, line 27
27: def self.as_string(bitmap)
28: return "none" if bitmap.zero?
29: res = []
30: @@name_to_bitmap.each do |name, bit|
31: res << name if (bitmap & bit) != 0
32: end
33: res.join(",")
34: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.