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


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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。