Documentation
¶
Index ¶
- Variables
- type 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
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrRowNotFound 行不存在 ErrRowNotFound = errors.New("row not found") // ErrIndexOutOfRange 索引越界 ErrIndexOutOfRange = errors.New("index out of range") )
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.