Skip to main content
Module

x/aitertools/src/unique.ts

Well-tested utility functions dealing with async iterables
Latest
import * as aitertools from "https://deno.land/x/aitertools@0.6.0/src/unique.ts";

Functions

Groups elmenets of an async interable source according to a specified keySelector function and creates a map of each group key to the elements in that group. Key values are compared using the === operator.

Eliminate duplicates in an async iterable source.