Skip to main content
Module

x/rimbu/mod.ts>AsyncReducer.toJSSet

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

Returns an AsyncReducer that collects received input values into a mutable JS Set, and returns a copy of that map when output is requested.

Examples

Example 1

await AsyncStream.of(1, 2, 3).reduce(AsyncReducer.toJSSet()))
// Set {1, 2, 3}