all(Pred, List) -> boolean()
boolean()Types
Pred = fun((Elem :: T) -> boolean())List = [T]T = term()Returns true if Pred(Elem) returns true for all elements Elem in List, otherwise false. The Pred function must return a boolean.