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