// ets_tracing: off import type * as C from "./core.js" import * as FoldLeft from "./foldLeft.js" /** * A sink that counts the number of elements fed to it. */ export function count(): C.Sink { return FoldLeft.foldLeft(0, (s, _) => s + 1) }