Package: effect
Module: Stream
Re-chunks the elements of the stream into chunks of n elements each. The
last chunk might contain less than n elements.
Signature
declare const rechunk: { (n: number): <A, E, R>(self: Stream<A, E, R>) => Stream<A, E, R>; <A, E, R>(self: Stream<A, E, R>, n: number): Stream<A, E, R>; }
Since v2.0.0