functionallTrueQ
Gives true, if all elements in a vector of Booleans are true
Extends from BusinessSimulation.Icons.Function (Icon for functions).
Information
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.
Syntax
Functions.allTrueQ(vec);
Examples
Functions.allTrueQ({false, false, false}); // false
Functions.allTrueQ({true, true, true}); // true
Functions.allTrueQ({false, false, true}); // false
See also
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| Boolean[:] | x | Vector of booleans |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Boolean | y | True, if all elements of the input vector are true |
Revisions
- Changed to shortcircuit evaluation and added
inline = truein v2.2.