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