UNPKG

@prelude/function

Version:

Function module.

5 lines (4 loc) 159 B
import type { Predicate } from './prelude.js'; /** @returns negated predicate. */ declare const not: <T>(f: Predicate<T>) => Predicate<T>; export default not;