combine
import { combine } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/iterable.ts";Combine two Iterables by concatenating their elements.
@example
import * as I from "./iterable.ts";
const first = I.wrap(1, 2, 3);
const second = I.wrap(4, 5, 6);
const combined = I.combine(second)(first);
const result = Array.from(combined); // [1, 2, 3, 4, 5, 6]
function combine<A>(second: Iterable<A>): (first: Iterable<A>) => Iterable<A>;