/** * A schedule that recurs anywhere, collecting all inputs into a `Chunk`. * * @tsplus static effect/core/io/Schedule.Ops collectAll */ export function collectAll(): Schedule< readonly [void, Chunk], never, A, Chunk > { return Schedule.identity().collectAll }