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]