Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rdoc/markup/attr_span.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

RDoc::Markup::AttrSpan

An array of attributes which parallels the characters in a string.

Public Class Methods

new(length) click to toggle source

Creates a new AttrSpan for length characters

 
               # File rdoc/markup/attr_span.rb, line 9
def initialize(length)
  @attrs = Array.new(length, 0)
end
            

Public Instance Methods

[](n) click to toggle source

Accesses flags for character n

 
               # File rdoc/markup/attr_span.rb, line 24
def [](n)
  @attrs[n]
end
            
set_attrs(start, length, bits) click to toggle source

Toggles bits from start to length

 
               # File rdoc/markup/attr_span.rb, line 15
def set_attrs(start, length, bits)
  for i in start ... (start+length)
    @attrs[i] |= bits
  end
end