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


Elixir Enum.drop_every用法及代碼示例


Elixir語言中 Enum.drop_every 相關用法介紹如下。

用法:

drop_every(enumerable, nth)
@spec drop_every(t(), non_neg_integer()) :: list()

返回刪除的enumerable 中每個nth 元素的列表,從第一個元素開始。

除非 nth 為 0,否則始終刪除第一個元素。

指定每個 nth 元素的第二個參數必須是非負整數。

例子

iex> Enum.drop_every(1..10, 2)
[2, 4, 6, 8, 10]

iex> Enum.drop_every(1..10, 0)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

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

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Enum.drop_every(enumerable, nth)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。