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

Combine

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

The Combine function in a Combinable.

type Combine<A> = (second: A) => (first: A) => A;

§Type Parameters

§Type

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