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


Elixir Enum.find_index用法及代碼示例


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

用法:

find_index(enumerable, fun)
@spec find_index(t(), (element() -> any())) :: non_neg_integer() | nil

類似於 find/3 ,但返回元素的索引(從零開始)而不是元素本身。

例子

iex> Enum.find_index([2, 4, 6], fn x -> rem(x, 2) == 1 end)
nil

iex> Enum.find_index([2, 3, 4], fn x -> rem(x, 2) == 1 end)
1

相關用法


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