Method: TableData::Table#size
- Defined in:
- lib/tabledata/table.rb
#size ⇒ Object Also known as: length
The number of rows, excluding headers
94 95 96 |
# File 'lib/tabledata/table.rb', line 94 def size @data.size - (@has_header ? 1 : 0) end |