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


Elixir Enum.chunk_while用法及代碼示例


Elixir語言中 Enum.chunk_while 相關用法介紹如下。

用法:

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

當發出每個塊時,使用細粒度控製對 enumerable 進行塊。

chunk_fun 接收當前元素和累加器,必須返回:

  • {:cont, chunk, acc} 發出一個塊並繼續使用累加器
  • {:cont, acc} 不發出任何塊並繼續使用累加器
  • {:halt, acc} 停止在 enumerable 上進行分塊。

當迭代完成(或 halt ed)時,使用最終累加器調用 after_fun 以處理作為累加器的一部分返回但未被 chunk_fun 作為塊發出的任何尾隨元素。它必須返回:

  • {:cont, chunk, acc} 發出一個塊。該塊將被附加到已發出的塊列表中。
  • {:cont, acc} 不發出塊

after_fun 中的 acc 是必需的,以便從 chunk_fun 鏡像元組格式,但由於遍曆完成,它將被丟棄。

返回發出的塊的列表。

例子

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> Enum.chunk_while(1..10, [], chunk_fun, after_fun)
[[1, 2], [3, 4], [5, 6], [7, 8], [9, 10]]
iex> Enum.chunk_while([1, 2, 3, 5, 7], [], chunk_fun, after_fun)
[[1, 2], [3, 5, 7]]

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Enum.chunk_while(enumerable, acc, chunk_fun, after_fun)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。