all
Computes the conjunction (AND) of all grouped boolean values.
all(xs:list) -> bool
Description
Section titled “Description”The all
function returns true
if all values in xs
are true
and false
otherwise.
xs: list
Section titled “xs: list”A list of boolean values.
Examples
Section titled “Examples”Check if all values are true
Section titled “Check if all values are true”from {x: true}, {x: true}, {x: false}summarize result=all(x)
{result: false}