Versions in this module Expand all Collapse all v0 v0.2.0 Jan 1, 2025 v0.1.0 Dec 31, 2024 Changes in this version + type CSV struct + Delimiter rune + FilePath string + Headers []Column + Records [][]interface{} + func Merge(files ...*CSV) (*CSV, error) + func New(filePath string, delimiter rune) *CSV + func NewFromRecords(filePath string, delimiter rune, headers []Column, records [][]interface{}) *CSV + func (c *CSV) ConvertColumnTypes() + func (c *CSV) GetHeaderNames() []string + func (c *CSV) Read() error + func (c *CSV) SaveAsExcel(filePath string, sheetName string) error + type Column struct + Name string + Type ColumnType + type ColumnType int + const FloatType + const IntegerType + const StringType