all
lib.lists.all
Primop
Docs pulled from | This Revision | about 3 hours ago
Takes 2 arguments
pred, list
Return true if function pred
returns true for all elements of
list
.
Inputs
pred
-
Predicate
list
-
Input list
Type
all :: (a -> bool) -> [a] -> bool
Examples
lib.lists.all
usage example
all (x: x < 3) [ 1 2 ]
=> true
all (x: x < 3) [ 1 2 3 ]
=> false
Noogle detected
Implementation
This function is implemented in c++ and is part of the native nix runtime.
Implementation
The following is the current implementation of this function.
all = builtins.all;