Object
An array of attributes which parallels the characters in a string.
Creates a new AttrSpan for length characters
AttrSpan
length
# File rdoc/markup/attr_span.rb, line 10 def initialize(length) @attrs = Array.new(length, 0) end
Accesses flags for character n
n
# File rdoc/markup/attr_span.rb, line 25 def [](n) @attrs[n] end
Toggles bits from start to length
bits
start
# File rdoc/markup/attr_span.rb, line 16 def set_attrs(start, length, bits) for i in start ... (start+length) @attrs[i] |= bits end end
This page was generated for Ruby 2.5.1
Generated with Ruby-doc Rdoc Generator 0.42.0.