nextRune returns the next rune in b or utf8.RuneError.
(b []byte)
| 260 | |
| 261 | // nextRune returns the next rune in b or utf8.RuneError. |
| 262 | func nextRune(b []byte) rune { |
| 263 | r, _ := utf8.DecodeRune(b) |
| 264 | return r |
| 265 | } |
| 266 | |
| 267 | func (r *Reader) readRecord(dst []string) ([]string, error) { |
| 268 | if r.Comma == r.Comment || !validDelim(r.Comma) || (r.Comment != 0 && !validDelim(r.Comment)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…