當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。