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

x/itertools/mod.ts>izip3

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

Like izip2, but for three input iterables.

Parameters

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

Returns

Iterable<[T1, T2, T3]>