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


Elixir Enum.find_value用法及代碼示例


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

用法:

find_value(enumerable, default \\ nil, fun)
@spec find_value(t(), any(), (element() -> any())) :: any() | nil

類似於 find/3 ,但返回函數調用的值而不是元素本身。

當結果為真時(既不是 nil 也不是 false ),則認為返回值已找到。

例子

iex> Enum.find_value([2, 3, 4], fn x ->
...>   if x > 2, do: x * x
...> end)
9

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

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

iex> Enum.find_value([1, 2, 3], "no bools!", &is_boolean/1)
"no bools!"

相關用法


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