SortingFn

typealias SortingFn<TData> = (rowA: Row<TData>, rowB: Row<TData>, columnId: String) -> Int

Comparator signature for sorting. Returns a negative number when rowA should come before rowB, zero for equal, positive otherwise. Built-in sort fns return -1 / 0 / 1.