/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ export type Predicate = (a: T) => boolean; export type Relation = (a: T, b: U) => boolean; export type EndoRelation = Relation;