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


Elixir Stream.chunk_while用法及代码示例


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

用法:

chunk_while(enum, acc, chunk_fun, after_fun)
(从 1.5.0 开始)
@spec chunk_while(
  Enumerable.t(),
  acc(),
  (element(), acc() -> {:cont, chunk, acc()} | {:cont, acc()} | {:halt, acc()}),
  (acc() -> {:cont, chunk, acc()} | {:cont, acc()})
) :: Enumerable.t()
when chunk: any()

当发出每个块时,使用细粒度控制对 enum 进行块。

chunk_fun 接收当前元素和累加器,并且必须返回 {:cont, element, acc} 以发出给定的块并继续累加器或 {:cont, acc} 不发出任何块并继续返回累加器。

after_fun 在迭代完成时调用,并且还必须返回 {:cont, element, acc}{:cont, acc}

例子

iex> chunk_fun = fn element, acc ->
...>   if rem(element, 2) == 0 do
...>     {:cont, Enum.reverse([element | acc]), []}
...>   else
...>     {:cont, [element | acc]}
...>   end
...> end
iex> after_fun = fn
...>   [] -> {:cont, []}
...>   acc -> {:cont, Enum.reverse(acc), []}
...> end
iex> stream = Stream.chunk_while(1..10, [], chunk_fun, after_fun)
iex> Enum.to_list(stream)
[[1, 2], [3, 4], [5, 6], [7, 8], [9, 10]]

相关用法


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