Checks if all elements in the input array are true.
true
> all([true, true, true])true> all([false, true, true])false Copy
> all([true, true, true])true> all([false, true, true])false
The array of booleans to be evaluated.
Returns true if all elements in array are true, otherwise false.
array
false
Checks if all elements in the input array are
true
.Example