class WAG::Table

Attributes

elements[R]
type[R]

Public Class Methods

new(elements, type = :anyfunc) click to toggle source
# File lib/wag/table.rb, line 8
def initialize(elements, type = :anyfunc)
  @elements = elements
  @type = type
end

Public Instance Methods

to_sexpr() click to toggle source
# File lib/wag/table.rb, line 13
def to_sexpr
  [:table, elements, type]
end