This information is part of the Business Simulation Library (BSL). Please support this work and ► donate.
The function takes a vector of Booleans and will return true, if all of the elements in the input vector is true, and false otherwise.
Functions.allTrueQ(vec);
Functions.allTrueQ({false, false, false}); // false Functions.allTrueQ({true, true, true}); // true Functions.allTrueQ({false, false, true}); // false
function allTrueQ extends BusinessSimulation.Icons.Function; input Boolean x[:] "Vector of booleans"; output Boolean y "True, if all elements of the input vector are true"; end allTrueQ;
inline = true
in v2.2.