Stream.drop/2

defmodule Stream do
  def drop(stream, count)
end

Lazily drops the next count elements from the stream.

If a negative count is given, it will drop the last count elements from the stream.