| 75 | } |
| 76 | |
| 77 | type recordReader struct { |
| 78 | records []Record |
| 79 | index int |
| 80 | } |
| 81 | |
| 82 | func (r *recordReader) ReadRecord() (*Record, error) { |
| 83 | if i := r.index; i >= 0 && i < len(r.records) { |
nothing calls this directly
no outgoing calls
no test coverage detected