当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Elixir Enum.drop用法及代码示例


Elixir语言中 Enum.drop 相关用法介绍如下。

用法:

drop(enumerable, amount)
@spec drop(t(), integer()) :: list()

enumerable 中删除元素的 amount

如果给出负数 amount,则最后一个值的 amount 将被丢弃。 enumerable 将被枚举一次以检索正确的索引,剩余的计算从最后执行。

例子

iex> Enum.drop([1, 2, 3], 2)
[3]

iex> Enum.drop([1, 2, 3], 10)
[]

iex> Enum.drop([1, 2, 3], 0)
[1, 2, 3]

iex> Enum.drop([1, 2, 3], -1)
[1, 2]

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Enum.drop(enumerable, amount)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。