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


Elixir Stream.with_index用法及代碼示例


Elixir語言中 Stream.with_index 相關用法介紹如下。

用法:

with_index(enum, offset \\ 0)
@spec with_index(Enumerable.t(), integer()) :: Enumerable.t()

創建一個流,其中可枚舉中的每個元素都將被包裝在其索引旁邊的元組中。

如果給出offset,我們將從給定的偏移量而不是從零開始索引。

例子

iex> stream = Stream.with_index([1, 2, 3])
iex> Enum.to_list(stream)
[{1, 0}, {2, 1}, {3, 2}]

iex> stream = Stream.with_index([1, 2, 3], 3)
iex> Enum.to_list(stream)
[{1, 3}, {2, 4}, {3, 5}]

相關用法


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