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

Compare

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

The compare function in a Comparable.

type Compare<A> = (second: A) => (first: A) => boolean;

§Type Parameters

§Type

§
(second: A) => (first: A) => boolean
[src]