UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

4 lines 441 B
import { PromiseOrValue, PromiseValue } from "../common"; export declare function prepend<T, R, N>(iterator: Iterator<T, R, N>, ...iterables: Array<Iterable<T>>): Generator<T, R, undefined>; export declare function prependAsync<T, R, N>(iterator: AsyncIterator<T, R, N>, ...iterables: Array<Iterable<PromiseOrValue<T>> | AsyncIterable<PromiseOrValue<T>>>): AsyncGenerator<PromiseValue<T>, R, undefined>; //# sourceMappingURL=prepend.d.ts.map