Stream.concat/2

defmodule Stream do
  def concat(left, right)
end

Creates a stream that enumerates the left enumerable, followed by the right one.