Next will return true if the next column is found.
()
| 76 | |
| 77 | // Next will return true if the next column is found. |
| 78 | func (cols *Cols) Next() bool { |
| 79 | cols.curCol++ |
| 80 | return cols.curCol <= cols.totalCols |
| 81 | } |
| 82 | |
| 83 | // Error will return an error when the error occurs. |
| 84 | func (cols *Cols) Error() error { |
no outgoing calls