typocomath/src/generic/relational.ts

6 lines
182 B
TypeScript

import {Dependencies, Signature} from '../interfaces/type.js'
export const unequal =
<T>(dep: Dependencies<'equal', T>): Signature<'unequal', T> =>
(x, y) => !dep.equal(x, y)