Enum.drop_while/2
defmodule Enum do
def drop_while(enumerable, fun)
end
Drops elements at the beginning of the enumerable while fun
returns a truthy value.
defmodule Enum do
def drop_while(enumerable, fun)
end
Drops elements at the beginning of the enumerable while fun
returns a truthy value.