lazzy.ts
Version:
Fast and lightweight library for lazy operations with iterable objects.
4 lines • 482 B
TypeScript
import { AsPromise, PromiseValue } from "../common";
export declare function concat<T>(...iterators: Array<Iterator<T, unknown, unknown>>): Generator<T, void, undefined>;
export declare function concatAsync<T, R, N>(source: AsyncIterator<T, R, N>, ...iterators: Array<Iterator<AsPromise<T> | PromiseValue<T>, unknown, unknown> | AsyncIterator<AsPromise<T> | PromiseValue<T>, unknown, unknown>>): AsyncGenerator<PromiseValue<T>, void, undefined>;
//# sourceMappingURL=concat.d.ts.map