all
优质
小牛编辑
129浏览
2023-12-01
如果Pred(Elem)为List中的所有元素Elem返回true,则返回true,否则返回false。
语法 (Syntax)
all(Pred,lst)
参数 (Parameters)
Pred - 将应用于字符串的谓词函数。
Lst - 值列表。
返回值 (Return Value)
如果Pred(Elem)为List中的所有元素Elem返回true,则返回true,否则返回false。
例如 (For example)
-module(helloworld).
-import(lists,[all/2]).
-export([start/0]).
start() ->
Lst1 = [1,2,3],
Predicate = fun(E) -> E rem 2 == 0 end,
Status = all(Predicate, Lst1),
io:fwrite("~w~n",[Status]).
在上面的示例中,我们首先定义一个谓词函数,其中每个列表值都传递给匿名函数。 在函数中,如果可以被2整除,则可以看到每个列表值。
输出 (Output)
当我们运行上述程序时,我们将得到以下结果。
false