lazzy.ts
Version:
Fast and lightweight library for lazy operations with iterable objects.
4 lines • 443 B
TypeScript
import { AsPromise, PromiseValue } from "../common";
export declare function append<T, R, N>(iterator: Iterator<T, R, N>, ...iterables: Array<Iterable<T>>): Generator<T, R, N>;
export declare function appendAsync<T, R, N>(iterator: AsyncIterator<T, R, N>, ...iterables: Array<Iterable<AsPromise<T> | PromiseValue<T>> | AsyncIterable<AsPromise<T> | PromiseValue<T>>>): AsyncGenerator<PromiseValue<T>, R, N>;
//# sourceMappingURL=append.d.ts.map