UNPKG

@effect-ts/system

Version:

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

19 lines (17 loc) 576 B
import * as SK from "../../Sink/index.mjs"; import * as RunManaged from "./runManaged.mjs"; /** * Like `Stream#forEachChunk`, but returns a `Managed` so the finalization order * can be controlled. */ export function runForEachChunkManaged_(self, f) { return RunManaged.runManaged_(self, SK.forEachChunk(f)); } /** * Like `Stream#forEachChunk`, but returns a `Managed` so the finalization order * can be controlled. */ export function runForEachChunkManaged(f) { return self => runForEachChunkManaged_(self, f); } //# sourceMappingURL=runForEachChunkManaged.mjs.map