import { izip2 } from "https://deno.land/x/itertools@v1.1.2/itertools.ts";
Returns an iterator that aggregates elements from each of the iterables.
Used for lock-step iteration over several iterables at a time. When
iterating over two iterables, use izip2
. When iterating over three
iterables, use izip3
, etc. izip
is an alias for izip2
.