Skip to main content
Module

x/asynciter/flatten.ts>flatten

Map, filter, reduce for AsyncIterables in Deno.
Latest
function flatten
import { flatten } from "https://deno.land/x/asynciter@0.0.18/flatten.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.