UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

13 lines (12 loc) 329 B
import * as MapOut from "./mapOut.mjs"; import * as MergeAll from "./mergeAll.mjs"; export function mergeOut_(self, n) { return MergeAll.mergeAll_(MapOut.mapOut_(self, x => x), n); } /** * @ets_data_first mergeOut_ */ export function mergeOut(n) { return self => mergeOut_(self, n); } //# sourceMappingURL=mergeOut.mjs.map