import * as C from "../core.js"; /** * Maps each element of this stream to another stream and returns the * non-deterministic merge of those streams, executing up to `n` inner streams * concurrently. Up to `bufferSize` elements of the produced streams may be * buffered in memory by this operator. */ export declare function chainPar_(self: C.Stream, n: number, f: (a: A) => C.Stream, bufferSize?: number): C.Stream; /** * Maps each element of this stream to another stream and returns the * non-deterministic merge of those streams, executing up to `n` inner streams * concurrently. Up to `bufferSize` elements of the produced streams may be * buffered in memory by this operator. * * @ets_data_first chainPar_ */ export declare function chainPar(n: number, f: (a: A) => C.Stream, bufferSize?: number): (self: C.Stream) => C.Stream; //# sourceMappingURL=chainPar.d.ts.map