Versions in this module Expand all Collapse all v1 v1.0.2 Apr 21, 2026 v1.0.1 Apr 21, 2026 Changes in this version + var ErrIndexOutOfRange = errors.New("index out of range") + var ErrRowNotFound = errors.New("row not found") + type Row struct + Path string + func New(path string) *Row + func (r *Row) Add(values []string) error + func (r *Row) AddAt(values []string, index int) error + func (r *Row) Delete(index int) error + func (r *Row) DeleteBy(column, value string) error + func (r *Row) Get(index int) ([]string, error) + func (r *Row) GetAll() ([][]string, error) + func (r *Row) GetBy(column, value string) ([][]string, error) + func (r *Row) Update(index int, values []string) error + func (r *Row) UpdateBy(column, value string, newValues []string) error