Skip to main content
Module

x/rimbu/mod.ts>AsyncTransformer.window

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
variable AsyncTransformer.window
import { AsyncTransformer } from "https://deno.land/x/rimbu@0.14.0/mod.ts";
const { window } = AsyncTransformer;

Returns an async transformer that produces windows/collections of windowSize size, each window starting skipAmount of elements after the previous, and optionally collected by a custom reducer.

Examples

Example 1

await AsyncStream.of(1, 2, 3, 4, 5, 6)
  .transform(AsyncTransformer.window(3))
  .toArray()
// => [[1, 2, 3], [4, 5, 6]]

type

{ <T>(windowSize: number, skipAmount?: number): AsyncTransformer<T, T[]>; <T, R>(
windowSize: number,
skipAmount?: number,
collector?: AsyncReducer<T, R>,
): AsyncTransformer<T, R>; }

Examples

Example 1

await AsyncStream.of(1, 2, 3, 4, 5, 6)
  .transform(AsyncTransformer.window(3))
  .toArray()
// => [[1, 2, 3], [4, 5, 6]]

type

{ <T>(windowSize: number, skipAmount?: number): AsyncTransformer<T, T[]>; <T, R>(
windowSize: number,
skipAmount?: number,
collector?: AsyncReducer<T, R>,
): AsyncTransformer<T, R>; }