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

Combinable

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

Combinable is a structure that allows the combination of two concrete values of A into a single value of A. In other functional libraries this is called a Semigroup.

interface Combinable <A> {
readonly combine: Combine<A>;
}

§Type Parameters

§Properties

§
readonly combine: Combine<A>
[src]