Rows represents a collection of encoded rows.
| 70 | |
| 71 | // Rows represents a collection of encoded rows. |
| 72 | type Rows interface { |
| 73 | // Clear returns a new collection with empty content. It may share the |
| 74 | // capacity with the current instance. The typical usage is `x = x.Clear()`. |
| 75 | Clear() Rows |
| 76 | } |
| 77 | |
| 78 | // Row represents a single encoded row. |
| 79 | type Row interface { |
no outgoing calls
no test coverage detected