Skip to main content
Module

x/rimbu/mod.ts>Transformer.collect

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Latest
function Transformer.collect
import { Transformer } from "https://deno.land/x/rimbu@1.2.1/mod.ts";
const { collect } = Transformer;

Returns a Transformer instance that converts or filters its input values using given collectFun before passing them to the reducer.

Parameters

collectFun: CollectFun<T, R>
  • a function receiving the following arguments, and returns a new value or skip if the value should be skipped:
  • value: the next value
  • index: the value index
  • skip: a token that, when returned, will not add a value to the resulting collection
  • halt: a function that, when called, ensures no next elements are passed