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


Elixir Stream.zip_with用法及代码示例


Elixir语言中 Stream.zip_with 相关用法介绍如下。

用法一

zip_with(enumerables, zip_fun)
(自 1.12.0 起)
@spec zip_with(enumerables, (Enumerable.t() -> term())) :: Enumerable.t()
when enumerables: [Enumerable.t()] | Enumerable.t()

懒惰地将相应元素从有限的可枚举集合中压缩到一个新的可枚举中,并使用 zip_fun 函数对其进行转换。

enumerables 中每个枚举的第一个元素将被放入一个列表中,然后将其传递给 1-arity zip_fun 函数。然后,将每个枚举中的第二个元素放入一个列表并传递给 zip_fun ,依此类推,直到 enumerables 中的任何一个枚举完成。

返回一个带有调用结果的新枚举 zip_fun

例子

iex> concat = Stream.concat(1..3, 4..6)
iex> Stream.zip_with([concat, concat], fn [a, b] -> a + b end) |> Enum.to_list()
[2, 4, 6, 8, 10, 12]

iex> concat = Stream.concat(1..3, 4..6)
iex> Stream.zip_with([concat, concat, 1..3], fn [a, b, c] -> a + b + c end) |> Enum.to_list()
[3, 6, 9]

用法二

zip_with(enumerable1, enumerable2, zip_fun)
(自 1.12.0 起)
@spec zip_with(Enumerable.t(), Enumerable.t(), (term(), term() -> term())) ::
  Enumerable.t()

Lazily 将对应的元素从两个可枚举项压缩到一个新的枚举项中,并使用zip_fun 函数对其进行转换。

zip_fun 将使用来自 enumerable1 的第一个元素和来自 enumerable2 的第一个元素调用,然后使用来自每个元素的第二个元素,依此类推,直到其中一个枚举完成。

例子

iex> concat = Stream.concat(1..3, 4..6)
iex> Stream.zip_with(concat, concat, fn a, b -> a + b end) |> Enum.to_list()
[2, 4, 6, 8, 10, 12]

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Stream.zip_with(enumerables, zip_fun)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。