Stream.drop/2
defmodule Stream do
def drop(enumerable, 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.
defmodule Stream do
def drop(enumerable, 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.