NumRows returns the number of rows in datatable
()
| 31 | |
| 32 | // NumRows returns the number of rows in datatable |
| 33 | func (t *DataTable) NumRows() int { |
| 34 | return t.nrows |
| 35 | } |
| 36 | |
| 37 | // NumCols returns the number of visible columns in datatable |
| 38 | func (t *DataTable) NumCols() int { |
no outgoing calls