fast-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
4 lines (3 loc) • 327 B
TypeScript
import { AnyIterable, Mapper } from 'augmentative-iterable';
import { CombineIngredients } from './ingredients';
export declare function combineRecipe(combineFuncs: CombineIngredients): <T, U>(this: AnyIterable<T>, iterable: AnyIterable<U>, keyA?: Mapper<T, unknown> | undefined, keyB?: Mapper<U, unknown> | undefined) => any;