Stream.zip/1

defmodule Stream do
  def zip(stream)
end

Zips corresponding elements from a finite collection of enumerables into one stream of tuples.

The zipping finishes as soon as any enumerable in the given collection completes.