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

Sortable

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

A Sortable structure has the method sort.

interface Sortable <A> extends Hold<A> {
readonly sort: Sort<A>;
}

§Type Parameters

§Extends

§Properties

§
readonly sort: Sort<A>
[src]