UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

9 lines 267 B
import type { Ordering } from "../Ordering/index.js"; /** * `Ord[A]` provides implicit evidence that values of type `A` have a total * ordering. */ export interface Ord<A> { readonly compare: (x: A, y: A) => Ordering; } //# sourceMappingURL=definition.d.ts.map