In Files

  • rdoc/markup/to_flow.rb

Parent

Methods

Files

Class/Module Index [+]

Quicksearch

RDoc::Markup::Flow::LIST

Attributes

contents[R]
type[R]

Public Class Methods

new(type) click to toggle source
 
               # File rdoc/markup/to_flow.rb, line 14
def initialize(type)
  @type = type
  @contents = []
end
            

Public Instance Methods

<<(stuff) click to toggle source
 
               # File rdoc/markup/to_flow.rb, line 18
def <<(stuff)
  @contents << stuff
end