An array of attributes which parallels the characters in a string.
Public class methods
new
(length)
[show source]
# File lib/rdoc/markup/inline.rb, line 58 def initialize(length) @attrs = Array.new(length, 0) end
Public instance methods
set_attrs
(start, length, bits)
[show source]
# File lib/rdoc/markup/inline.rb, line 62 def set_attrs(start, length, bits) for i in start ... (start+length) @attrs[i] |= bits end end