class Proforma::Modeling::Table::Section

A table section has zero or more rows.

Public Class Methods

new(rows: []) click to toggle source
# File lib/proforma/modeling/table/section.rb, line 17
def initialize(rows: [])
  super(:rows, Row, rows)
end