tableDefaultContent implements the default TableContent interface for the Table class.
| 315 | // tableDefaultContent implements the default TableContent interface for the |
| 316 | // Table class. |
| 317 | type tableDefaultContent struct { |
| 318 | // The cells of the table. Rows first, then columns. |
| 319 | cells [][]*TableCell |
| 320 | |
| 321 | // The rightmost column in the data set. |
| 322 | lastColumn int |
| 323 | } |
| 324 | |
| 325 | // Clear clears all data. |
| 326 | func (t *tableDefaultContent) Clear() { |
nothing calls this directly
no outgoing calls
no test coverage detected