如果 Pred (Elem)对 List 中至少一个元素 Elem 返回 true,则返回 true。
any(Pred,lst)
Pred −将应用于字符串的谓词函数
Lst −值列表
如果 Pred (Elem)对 List 中至少一个元素 Elem 返回 true,则返回 true。
-module(helloworld). -import(lists,[any/2]). -export([start/0]). start() -> Lst1 = [1,2,3], Predicate = fun(E) -> E rem 2 == 0 end, Status = any(Predicate, Lst1), io:fwrite("~w~n",[Status]).
在上面的示例中,我们首先定义一个谓词函数,其中每个列表值都传递给匿名函数。在此功能中,可以看到每个列表值是否可以被2整除。
当我们运行上面的程序时,我们将得到以下结果。
true