UNPKG

@prelude/cmp

Version:

Cmp module.

5 lines (4 loc) 192 B
import { type Cmp } from './prelude.js'; /** @returns maximum element from provided list of arguments. */ declare const max: <T>(cmp: Cmp<T>, first: T, ...rest: T[]) => T; export default max;