import { Managed } from "../model"; /** * Applies the function `f` to each element of the `Iterable` and * returns the results in a new `B[]`. * * For a parallel version of this method, see `foreachPar`. * If you do not need the results, see `foreachUnit` for a more efficient implementation. */ export declare const traverseI: ( f: (a: A) => Managed ) => (as: Iterable) => Managed; /** * Applies the function `f` to each element of the `Iterable` and * returns the results in a new `B[]`. * * For a parallel version of this method, see `foreachPar_`. * If you do not need the results, see `foreachUnit_` for a more efficient implementation. */ export declare const traverseI_: ( as: Iterable, f: (a: A) => Managed ) => Managed; //# sourceMappingURL=traverseI.d.ts.map