returns number of rows
(ctx context.Context, idx int)
| 24 | type IndexedRows interface { |
| 25 | Len() int // returns number of rows |
| 26 | GetRow(ctx context.Context, idx int) (IndexedRow, error) // returns a row at the given index or an error |
| 27 | } |
| 28 | |
| 29 | // IndexedRow is a row with a corresponding index. |
no outgoing calls
no test coverage detected