Stream.drop_while/2
defmodule Stream do
def drop_every(stream, fun)
end
Lazily drops elements of the enumerable while the given function returns a truthy value.
defmodule Stream do
def drop_every(stream, fun)
end
Lazily drops elements of the enumerable while the given function returns a truthy value.