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


Elixir Enum.any?用法及代碼示例


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

用法一

any?(enumerable)
@spec any?(t()) :: boolean()

如果enumerable 中的至少一個元素為真,則返回true

當元素具有真值時(既不是 false 也不是 nil )迭代立即停止並返回 true。在所有其他情況下,返回 false

例子

iex> Enum.any?([false, false, false])
false

iex> Enum.any?([false, true, false])
true

iex> Enum.any?([])
false

用法二

any?(enumerable, fun)
@spec any?(t(), (element() -> as_boolean(term()))) :: boolean()

如果 fun.(element) 對於 enumerable 中的至少一個元素是真實的,則返回 true

遍曆 enumerable 並在每個元素上調用 fun。當調用 fun 返回一個真值(既不是 false 也不是 nil )迭代立即停止並返回 true。在所有其他情況下,返回 false

例子

iex> Enum.any?([2, 4, 6], fn x -> rem(x, 2) == 1 end)
false

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

iex> Enum.any?([], fn x -> x > 0 end)
false

相關用法


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