Home | History | Annotate | Download | only in csv

Lines Matching defs:Read

101 // first call to Read or ReadAll.
123 // If FieldsPerRecord is positive, Read requires each record to
124 // have the given number of fields. If FieldsPerRecord is 0, Read sets it to
138 // ReuseRecord controls whether calls to Read may return a slice sharing
140 // By default, each call to Read returns newly allocated memory owned by the caller.
147 // numLine is the current line being read in the CSV file.
175 // Read reads one record (a slice of fields) from r.
177 // Read returns the record along with the error ErrFieldCount.
178 // Except for that case, Read always returns either a non-nil
180 // If there is no data left to be read, Read returns nil, io.EOF.
182 // between multiple calls to Read.
183 func (r *Reader) Read() (record []string, err error) {
196 // defined to read until EOF, it does not treat end of file as an error to be
213 // If some bytes were read, then the error is never io.EOF.
260 // Read line (automatically skipping past empty lines and any comments).