@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
28 lines (24 loc) • 751 B
text/typescript
// ets_tracing: off
import type * as CK from "../../../../Collections/Immutable/Chunk/index.js"
import * as SK from "../../Sink/index.js"
import type * as C from "../core.js"
import * as Transduce from "./transduce.js"
/**
* Partitions the stream with specified chunkSize
* @param chunkSize size of the chunk
*/
export function grouped_<R, E, A>(
self: C.Stream<R, E, A>,
chunkSize: number
): C.Stream<R, E, CK.Chunk<A>> {
return Transduce.transduce_(self, SK.collectAllN<E, A>(chunkSize))
}
/**
* Partitions the stream with specified chunkSize
* @param chunkSize size of the chunk
*
* @ets_data_first grouped_
*/
export function grouped(chunkSize: number) {
return <R, E, A>(self: C.Stream<R, E, A>) => grouped_(self, chunkSize)
}