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[]`. * * For a sequential version of this method, see `foreach`. */ export declare const traverseIPar: ( 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[]`. * * For a sequential version of this method, see `foreach_`. */ export declare const traverseIPar_: ( as: Iterable, f: (a: A) => Managed ) => Managed; //# sourceMappingURL=traverseIPar.d.ts.map