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


Elixir Enum.map_every用法及代碼示例


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

用法:

map_every(enumerable, nth, fun)
(從 1.4.0 開始)
@spec map_every(t(), non_neg_integer(), (element() -> any())) :: list()

返回在 enumerable 的每個 nth 元素上調用 fun 的結果列表,從第一個元素開始。

第一個元素總是傳遞給給定的函數,除非 nth0

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

如果 nth0 ,則 enumerable 直接轉換為列表,而不會應用 fun

例子

iex> Enum.map_every(1..10, 2, fn x -> x + 1000 end)
[1001, 2, 1003, 4, 1005, 6, 1007, 8, 1009, 10]

iex> Enum.map_every(1..10, 3, fn x -> x + 1000 end)
[1001, 2, 3, 1004, 5, 6, 1007, 8, 9, 1010]

iex> Enum.map_every(1..5, 0, fn x -> x + 1000 end)
[1, 2, 3, 4, 5]

iex> Enum.map_every([1, 2, 3], 1, fn x -> x + 1000 end)
[1001, 1002, 1003]

相關用法


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