Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/easyts/signals/signals_combiners.ts>FilterCombiner

js library written with ts, use select and chan like golang in js.
Latest
class FilterCombiner
implements Combiner<T, void>
import { FilterCombiner } from "https://deno.land/x/easyts@0.1.3/signals/signals_combiners.ts";

An example of a combiner that processes arguments before passing them to a slot and can determine whether to continue calling subsequent slots

Constructors

new
FilterCombiner(pipe: FilterCallback<T>)

Methods

invoke(val: T, iterator: Iterator<Slot<T, void>>): void