Documentation
¶
Overview ¶
Package csv provides CSV format adapters for the Pulse I/O pipeline.
Package csv provides CSV import and export for the pulse I/O pipeline.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Reader ¶
type Reader struct {
// contains filtered or unexported fields
}
Reader reads CSV data from a byte source.
func NewReaderFromBytes ¶
NewReaderFromBytes creates a CSV reader from raw bytes.
func (*Reader) ReadHeader ¶
ReadHeader returns the column names from the first row.
type Writer ¶
type Writer struct {
// contains filtered or unexported fields
}
Writer writes CSV data to a buffer.
func NewWriterToBuffer ¶
func NewWriterToBuffer() *Writer
NewWriterToBuffer creates a CSV writer that writes to an internal buffer.
func (*Writer) WriteHeader ¶
WriteHeader writes the column names as the first CSV row.
Click to show internal directories.
Click to hide internal directories.