UNPKG

@prelude/cmp

Version:

Cmp module.

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