2018-12-19 14:38:27 +01:00
|
|
|
export type Predicate<T> = (a: T) => boolean;
|
2018-12-19 09:08:09 +01:00
|
|
|
|
2018-12-19 14:38:27 +01:00
|
|
|
export type Relation<T, U> = (a: T, b: U) => boolean;
|
2018-12-19 08:59:43 +01:00
|
|
|
|
|
|
|
export type EndoRelation<T> = Relation<T, T>;
|