allTrueQGives true, if all elements in a vector of Booleans are true |
![]() |
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
x |
Type: Boolean[:] Description: Vector of booleans |
---|
y |
Type: Boolean Description: True, if all elements of the input vector are true |
---|
inline = true
in v2.2.