/** * A sink that counts the number of elements fed to it. * * @tsplus static effect/core/stream/Sink.Ops count */ export function count(): Sink { return Sink.foldLeft(0, (acc, _) => acc + 1) }