Parser is an interface for the parsers.
| 12 | |
| 13 | // Parser is an interface for the parsers. |
| 14 | type Parser interface { |
| 15 | // Parse the next record from the source. |
| 16 | Parse() bool |
| 17 | |
| 18 | // Value returns the last parsed record by a call to Parse. |
| 19 | Value() record.Record |
| 20 | |
| 21 | // Err returns the first error that was encountered. |
| 22 | Err() error |
| 23 | } |
no outgoing calls
no test coverage detected