In Files

  • rdoc/markup/simple_markup/inline.rb

Parent

Methods

Files

Class/Module Index [+]

Quicksearch

SM::AttrSpan

An array of attributes which parallels the characters in a string

Public Class Methods

new(length) click to toggle source
 
               # File rdoc/markup/simple_markup/inline.rb, line 53
def initialize(length)
  @attrs = Array.new(length, 0)
end
            

Public Instance Methods

[](n) click to toggle source
 
               # File rdoc/markup/simple_markup/inline.rb, line 63
def [](n)
  @attrs[n]
end
            
set_attrs(start, length, bits) click to toggle source
 
               # File rdoc/markup/simple_markup/inline.rb, line 57
def set_attrs(start, length, bits)
  for i in start ... (start+length)
    @attrs[i] |= bits
  end
end