Elixir语言中 Enum.zip_with
相关用法介绍如下。
用法一
zip_with(enumerables, zip_fun)
(自 1.12.0 起)
@spec zip_with(t(), ([term()] -> term())) :: [term()]
将有限可枚举集合中的相应元素压缩到列表中,并使用zip_fun
函数对其进行转换。
enumerables
中每个枚举的第一个元素将被放入一个列表中,然后将其传递给 1-arity zip_fun
函数。然后,将每个枚举中的第二个元素放入一个列表并传递给 zip_fun
,依此类推,直到 enumerables
中的任何一个枚举用完元素。
返回一个列表,其中包含调用 zip_fun
的所有结果。
例子
iex> Enum.zip_with([[1, 2], [3, 4], [5, 6]], fn [x, y, z] -> x + y + z end)
[9, 12]
iex> Enum.zip_with([[1, 2], [3, 4]], fn [x, y] -> x + y end)
[4, 6]
用法二
zip_with(enumerable1, enumerable2, zip_fun)
(自 1.12.0 起)
@spec zip_with(t(), t(), (enum1_elem :: term(), enum2_elem :: term() -> term())) :: [
term()
]
将两个可枚举中的相应元素压缩到一个列表中,并使用zip_fun
函数对其进行转换。
每个集合中的相应元素依次传递给提供的 2-arity zip_fun
函数。返回一个列表,其中包含为每对元素调用 zip_fun
的结果。
只要任一可枚举的元素用完,压缩就会结束。
压缩Map
重要的是要记住,拉链本质上依赖于顺序。如果您压缩两个列表,您将依次从每个列表中获取索引处的元素。如果我们将两个 map 压缩在一起,很容易认为您将在左侧 map 中获得给定的 key,在右侧 map 中获得匹配的 key,但没有这样的保证,因为 map 的 key 不是有序的!考虑以下:
left = %{:a => 1, 1 => 3}
right = %{:a => 1, :b => :c}
Enum.zip(left, right)
# [{{1, 3}, {:a, 1}}, {{:a, 1}, {:b, :c}}]
如您所见, :a
没有与 :a
配对。如果这是您想要的,您应该使用
。Map.merge/3
例子
iex> Enum.zip_with([1, 2], [3, 4], fn x, y -> x + y end)
[4, 6]
iex> Enum.zip_with([1, 2], [3, 4, 5, 6], fn x, y -> x + y end)
[4, 6]
iex> Enum.zip_with([1, 2, 5, 6], [3, 4], fn x, y -> x + y end)
[4, 6]
相关用法
- Elixir Enum.zip_reduce用法及代码示例
- Elixir Enum.zip用法及代码示例
- Elixir Enum.unzip用法及代码示例
- Elixir Enum.min_max用法及代码示例
- Elixir Enum.reduce_while用法及代码示例
- Elixir Enum.at用法及代码示例
- Elixir Enum.split_with用法及代码示例
- Elixir Enum.dedup用法及代码示例
- Elixir Enum.sum用法及代码示例
- Elixir Enum.find_value用法及代码示例
- Elixir Enum.product用法及代码示例
- Elixir Enum.map_join用法及代码示例
- Elixir Enum.intersperse用法及代码示例
- Elixir Enum.flat_map用法及代码示例
- Elixir Enum.count用法及代码示例
- Elixir Enum.fetch用法及代码示例
- Elixir Enum.frequencies用法及代码示例
- Elixir Enum.drop用法及代码示例
- Elixir Enum.slice用法及代码示例
- Elixir Enum.max_by用法及代码示例
- Elixir Enum.random用法及代码示例
- Elixir Enum.empty?用法及代码示例
- Elixir Enum.take_while用法及代码示例
- Elixir Enum.find用法及代码示例
- Elixir Enum.chunk_every用法及代码示例
注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Enum.zip_with(enumerables, zip_fun)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。