Object
Public: A data object that encapsulates the collection of rows (head, foot, body) for a table
# File lib/asciidoctor/table.rb, line 10 def initialize head = [], foot = [], body = [] @head = head @foot = foot @body = body end