import { BasicArithmetic } from '../arithmetic' /** * This function should be passed to array.sort() */ export const compare = ({ gt, lt }: BasicArithmetic) => (a: N, b: N) => (lt(a, b)) ? -1 : ((gt(a, b)) ? 1 : 0)