Lib.numbers.bool.combine¶
Operators¶
- All — Returns true if all of the connected booleans are true.
- And — Returns True if both inputs are true. Consider using [All] if you want to test more than two booleans for true.
- Any — Returns true if any of its inputs are true.
- Or — Returns true if one of its inputs is true. Consider using [Any] if you want to test more than two booleans.
Auto-generated from the operator library.