import { typeCmp, type R } from'./prelude.js';
/** @returns composed non-nullable comparision function as null-handling function, `null` values are considered lower than non-`null` values. */declareconstnullOr: <T>(cmp: Cmp<T>) =>(a: T | null, b: T | null) => R;
exportdefault nullOr;