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