mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-12-16 07:38:18 +09:00
c03e2dfbc0
* Change naming * x to a
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
export type Predicate<T> = (a: T) => boolean;
|
|
|
|
export type Relation<T, U> = (a: T, b: U) => boolean;
|
|
|
|
export type EndoRelation<T> = Relation<T, T>;
|