ParsedLine represents a parsed CSV line with its order
| 92 | |
| 93 | // ParsedLine represents a parsed CSV line with its order |
| 94 | type ParsedLine struct { |
| 95 | Index int |
| 96 | Fields []string |
| 97 | Bytes int64 |
| 98 | Err error |
| 99 | } |
| 100 | |
| 101 | // load file content to buffer (async version with concurrent parsing) |
| 102 | func loadFileToBufferAsync(fn string, b *Buffer, updateChan chan<- bool, doneChan chan<- error) { |
nothing calls this directly
no outgoing calls
no test coverage detected