Functionsยง
- all
- Returns whether all values in the array are
true. - and
- Performs
&&operation on twoBooleanArray, combining the validities. - and_
scalar - Performs
ANDoperation on an array and a scalar value. If either left or right value is null then the result is also null. - any
- Returns whether any of the values in the array are
true. - is_
not_ null - Returns a non-null
BooleanArraywith whether each value of the array is not null. - is_null
- Returns a non-null
BooleanArraywith whether each value of the array is null. - not
- Performs unary
NOToperation on an arrays. If value is null then the result is also null. - or
- Performs
||operation on twoBooleanArray, combining the validities. - or_
scalar - Performs
ORoperation on an array and a scalar value. If either left or right value is null then the result is also null.