Class SM::Flow::LIST
In: markup/simple_markup/to_flow.rb
Parent: Object

Methods

<<   new  

Attributes

contents  [R] 
type  [R] 

Public Class methods

[Source]

    # File markup/simple_markup/to_flow.rb, line 13
13:       def initialize(type)
14:         @type = type
15:         @contents = []
16:       end

Public Instance methods

[Source]

    # File markup/simple_markup/to_flow.rb, line 17
17:       def <<(stuff)
18:         @contents << stuff
19:       end

[Validate]