CsvTableSorting extension

Sorting operations on CsvTable.

on

Methods

sort(int compare(CsvRow a, CsvRow b)) → void

Available on CsvTable, provided by the CsvTableSorting extension

Sort with custom comparator.
sortBy(String column, {bool ascending = true}) → void

Available on CsvTable, provided by the CsvTableSorting extension

Sort by column name.
sortByIndex(int column, {bool ascending = true}) → void

Available on CsvTable, provided by the CsvTableSorting extension

Sort by column index.
sortByMultiple(List<(String, bool)> criteria) → void

Available on CsvTable, provided by the CsvTableSorting extension

Sort by multiple columns.