@prelude/cmp
Version:
Cmp module.
7 lines • 333 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const prelude_js_1 = require("./prelude.js");
/** Maps comparision function to non-descending predicate. */
const nonDescending = (cmp) => (a, b) => cmp(a, b) !== prelude_js_1.dsc;
exports.default = nonDescending;
//# sourceMappingURL=non-descending.js.map
;