class Asciidoctor::Table::Rows

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

def initialize head = [], foot = [], body = []

def initialize head = [], foot = [], body = []
  @head = head
  @foot = foot
  @body = body
end