Home | History | Annotate | Download | only in csv

Lines Matching refs:Line

17 // Blank lines are ignored.  A line with only whitespace characters (excluding
18 // the ending newline character) is not considered a blank line.
43 // "Multi-line
48 // {`Multi-line
62 // The first line is 1. The first column is 0.
64 Line int // Line where the error occurred
70 return fmt.Sprintf("line %d, column %d: %s", e.Line, e.Column, e.Err)
75 ErrTrailingComma = errors.New("extra delimiter at end of line") // no longer used
78 ErrFieldCount = errors.New("wrong number of fields in line")
104 Comment rune // comment character for start of line
109 line int
126 Line: r.line,
175 // of how far into the line we have read. r.column will point to the start
211 // Each record starts on a new line. We increment our line
214 r.line++
219 // then skip to the end of line.
273 // We are a trailing empty field or a blank line
311 r.line++