import type { Managed } from "../model"; /** * Applies the function `f` to each element of the `Iterable` in parallel, * and returns the results in a new `B[]`. * * Unlike `foreachPar`, this method will use at most up to `n` fibers. */ export declare const traverseIParN: ( n: number ) => (f: (a: A) => Managed) => (as: Iterable) => Managed; /** * Applies the function `f` to each element of the `Iterable` in parallel, * and returns the results in a new `B[]`. * * Unlike `foreachPar_`, this method will use at most up to `n` fibers. */ export declare const traverseIParN_: ( n: number ) => (as: Iterable, f: (a: A) => Managed) => Managed; //# sourceMappingURL=traverseIParN.d.ts.map