Skip to main content
Module

x/asynciter/mod.ts>map

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

Map the sequence from one type to another.

Parameters

iterable: AsyncIterable<T>

An iterable collection.

mapFn: (item: T) => U | Promise<U>

The mapping function.

Returns

AsyncIterableIterator<U>

An iterator of mapped values.