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

x/itertools/mod.ts>zip3

🦕 A TypeScript port of Python's itertools and more-itertools for Deno
Latest
function zip3
import { zip3 } from "https://deno.land/x/itertools@v1.1.2/mod.ts";

See izip3.

Parameters

xs: Iterable<T1>
ys: Iterable<T2>
zs: Iterable<T3>

Returns

Array<[T1, T2, T3]>