import type { Fn, Fn0, Fn2 } from "./fn.js"; /** * Predicate function mapping given value to true/false. */ export type Predicate = Fn; /** * Predicate function mapping given args to true/false. */ export type Predicate2 = Fn2; /** * Higher order {@link Predicate} builder. Possibly stateful. */ export type StatefulPredicate = Fn0>; /** * Higher order {@link Predicate2} builder. Possibly stateful. */ export type StatefulPredicate2 = Fn0>; //# sourceMappingURL=predicate.d.ts.map