Unmarshaller currently uses *csv.Reader as its input, however we can loosen this restriction and just internally use the pre-existing CSVReader interface instead as defined in decode.go
My use case for this is due to a file that uses multi-character field delimiters|| and this is unsupported by golang's encoding/csv
Unmarshaller currently uses
*csv.Reader
as its input, however we can loosen this restriction and just internally use the pre-existingCSVReader
interface instead as defined indecode.go
My use case for this is due to a file that uses multi-character field delimiters
||
and this is unsupported by golang'sencoding/csv