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


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)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。