class Asciidoctor::Table::Rows

Public: A data object that encapsulates the collection of rows (head, foot, body) for a table

Attributes

body[RW]
foot[RW]
head[RW]

Public Class Methods

new(head = [], foot = [], body = []) click to toggle source
# File lib/asciidoctor/table.rb, line 10
def initialize head = [], foot = [], body = []
  @head = head
  @foot = foot
  @body = body
end