UNPKG

@prelude/cmp

Version:

Cmp module.

5 lines (4 loc) 200 B
import { type R } from './prelude.js'; /** @returns comparision function from greater-than function. */ declare const ofGt: <T>(gt: (a: T, b: T) => boolean) => (a: T, b: T) => R; export default ofGt;