Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

KindPredicate

import type { KindPredicate } from "https://raw.githubusercontent.com/baetheus/fun/main/predicate.ts";

Specifies Predicate as a Higher Kinded Type, with contravariant parameter A corresponding to the 0th index of any Substitutions.

interface KindPredicate extends Kind {
readonly kind: Predicate<In<this, 0>>;
}

§Extends

§Properties

§
readonly kind: Predicate<In<this, 0>>
[src]