Enum.drop/2
defmodule Enum do
def drop(enumerable, count)
end
Drops count
elements from the enumerable.
If a negative count
is given, the count
last values will be dropped.
defmodule Enum do
def drop(enumerable, count)
end
Drops count
elements from the enumerable.
If a negative count
is given, the count
last values will be dropped.