Enum.zip/1
defmodule Enum do
def zip(enumerables)
end
Zips corresponding elements from a finite collection of enumerables
into one list of tuples.
The zipping finishes as soon as any enumerable in the given collection completes.
defmodule Enum do
def zip(enumerables)
end
Zips corresponding elements from a finite collection of enumerables
into one list of tuples.
The zipping finishes as soon as any enumerable in the given collection completes.