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. When a new stream is created * from an element of the source stream, the oldest executing stream is cancelled. Up to `bufferSize` * elements of the produced streams may be buffered in memory by this operator. */ export declare function chainParSwitch_(self: C.Stream, f: (a: A) => C.Stream, n: number, 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. When a new stream is created * from an element of the source stream, the oldest executing stream is cancelled. Up to `bufferSize` * elements of the produced streams may be buffered in memory by this operator. * * @ets_data_first chainParSwitch_ */ export declare function chainParSwitch(f: (a: A) => C.Stream, n: number, bufferSize?: number): (self: C.Stream) => C.Stream; //# sourceMappingURL=chainParSwitch.d.ts.map