Documentation ¶
Index ¶
Constants ¶
View Source
const BOMUTF16BE string = "feff"
View Source
const BOMUTF16LE string = "fffe"
View Source
const BOMUTF32BE string = "0000feff"
View Source
const BOMUTF32LE string = "fffe0000"
View Source
const BOMUTF8 string = "efbbbf"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CSVScanner ¶
type CSVScanner struct { ColumnNames []string // contains filtered or unexported fields }
func NewCSVScanner ¶
func NewCSVScanner(reader io.ReadCloser) (*CSVScanner, error)
func NewURLScanner ¶
func (*CSVScanner) Bytes ¶
func (cs *CSVScanner) Bytes() []byte
func (*CSVScanner) Close ¶
func (cs *CSVScanner) Close() error
func (*CSVScanner) Err ¶
func (cs *CSVScanner) Err() error
err returns the first non-EOF error that was encountered by the CSVScanner
func (*CSVScanner) Row ¶
func (cs *CSVScanner) Row() []string
func (*CSVScanner) Scan ¶
func (cs *CSVScanner) Scan() bool
func (*CSVScanner) Unmarshal ¶
func (cs *CSVScanner) Unmarshal(t interface{})
Click to show internal directories.
Click to hide internal directories.