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

fromCombine

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

Create a Combinable from a Combine and an init function.

function fromCombine<A>(combine: Combine<A>): Combinable<A>;
§
fromCombine<A>(combine: Combine<A>): Combinable<A>
[src]

§Type Parameters

§Parameters

§
combine: Combine<A>
[src]

§Return Type