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