UNPKG

@effect-ts/system

Version:

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

9 lines (8 loc) 219 B
import * as FoldLeft from "./foldLeft.mjs"; /** * A sink that counts the number of elements fed to it. */ export function count() { return FoldLeft.foldLeft(0, (s, _) => s + 1); } //# sourceMappingURL=count.mjs.map