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


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