| 27 | } |
| 28 | |
| 29 | type lineReaderAt struct { |
| 30 | r io.ReaderAt |
| 31 | index []int64 |
| 32 | eof bool |
| 33 | } |
| 34 | |
| 35 | func (r *lineReaderAt) ReadLinesAt(lines [][]byte, offset int64) (n int, err error) { |
| 36 | if offset < 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected