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 Stream.chunk_every用法及代碼示例
- Elixir Stream.chunk_by用法及代碼示例
- Elixir Stream.concat用法及代碼示例
- Elixir Stream.cycle用法及代碼示例
- Elixir Stream.drop_while用法及代碼示例
- Elixir Stream.map_every用法及代碼示例
- Elixir Stream.iterate用法及代碼示例
- Elixir Stream.dedup_by用法及代碼示例
- Elixir Stream.interval用法及代碼示例
- Elixir Stream.zip用法及代碼示例
- Elixir Stream.reject用法及代碼示例
- Elixir Stream.uniq用法及代碼示例
- Elixir Stream.dedup用法及代碼示例
- Elixir Stream.take_every用法及代碼示例
- Elixir Stream.take用法及代碼示例
- Elixir Stream.drop用法及代碼示例
- Elixir Stream.zip_with用法及代碼示例
- Elixir Stream.transform用法及代碼示例
- Elixir Stream.with_index用法及代碼示例
- Elixir Stream.flat_map用法及代碼示例
- Elixir Stream.repeatedly用法及代碼示例
- Elixir Stream.uniq_by用法及代碼示例
- Elixir Stream.take_while用法及代碼示例
- Elixir Stream.intersperse用法及代碼示例
- Elixir Stream.filter用法及代碼示例
注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Stream.chunk_while(enum, acc, chunk_fun, after_fun)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。