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

getCombinable

import { getCombinable } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/iterable.ts";

Create a Combinable instance for Iterable.

@example
import * as I from "./iterable.ts";

const combinable = I.getCombinable<number>();
const combined = combinable.combine(I.wrap(4, 5, 6))(I.wrap(1, 2, 3));
const result = Array.from(combined); // [1, 2, 3, 4, 5, 6]
function getCombinable<A>(): Combinable<Iterable<A>>;
§
getCombinable<A>(): Combinable<Iterable<A>>
[src]

§Type Parameters

§Return Type

§
Combinable<Iterable<A>>
[src]