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


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)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。