In this release, gotable mainly adds APIs for storing table data as files. For example JSON and CSV files. Here are the changes of this release:
- New Functions / Methods:
- Save table data to CSV file(
*table.ToCSVFile) - Save table data to JSON file(
*table.ToJsonFile) - Check whether column exists(
*table.HasColumn) - Compare whether the columns of two tables are the same(
*table.EqualColumns) - Clear all table data: columns and rows(
*table.Clear)
- Delete Functions / Methods:
- Create table(
gotable.CreateTable)
- Fix issues:
- Fix an issue that empty columns can not create a table.
- Improvement
- Optimized the documentation. Different modules can be vistied by internal links.
- Print empty table do not print tips anymore.