Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/asynciter/mod.ts>flatten

Map, filter, reduce for AsyncIterables in Deno.
Latest
function flatten
Re-export
import { flatten } from "https://deno.land/x/asynciter@0.0.18/mod.ts";

Flatten the iterable.

Parameters

iterable: AsyncIterable<Iterable<T> | AsyncIterable<T>>

An iterable collection containing iterable collections.

Returns

AsyncIterableIterator<T>

An iterator where a level of indirection has been removed.