all function
all([X])
all({X})
Result is true if all the elements of the array [X] or the list {X} are true
Input: boolean array/list
Result: boolean
Examples:
all([true,true,true,false]) --> false
all([true,true,true,true]) --> true
In: Contents >> Working with equations >> Functions >> Built-in functions