MCPcopy Create free account
hub / github.com/codechenx/FastTableViewer / ParsedLine

Struct ParsedLine

io.go:94–99  ·  view source on GitHub ↗

ParsedLine represents a parsed CSV line with its order

Source from the content-addressed store, hash-verified

92
93// ParsedLine represents a parsed CSV line with its order
94type 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)
102func loadFileToBufferAsync(fn string, b *Buffer, updateChan chan<- bool, doneChan chan<- error) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected