UNPKG

@effect-ts/system

Version:

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

10 lines (9 loc) 267 B
import * as SK from "../../Sink/index.mjs"; import * as Run from "./run.mjs"; /** * Runs the stream to a sink which sums elements, provided they are Numeric. */ export function runSum(self) { return Run.run_(self, SK.sum()); } //# sourceMappingURL=runSum.mjs.map