Or Op
Returns true if one or more of the input booleans are true
Summary (oneliner)
Performs a logical OR operation. If one of the input ports evaluates to true (not 0), the Result will be true as well, false otherwise.
| Bool1 | Bool2 | Result |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |
Full Name
- Ops.Boolean.Or
- Core Op - visible for everyone
- MIT
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Op Licence
Caniuse query
Example Patch boolean example
INPUT PORTS
bool 1 (Number: boolean)
bool 2 (Number: boolean)
bool 3 (Number: boolean)
bool 4 (Number: boolean)
bool 5 (Number: boolean)
bool 6 (Number: boolean)
bool 7 (Number: boolean)
bool 8 (Number: boolean)
bool 9 (Number: boolean)
bool 10 (Number: boolean)
OUTPUT PORTS
result (booleanNumber)
True if one or more of the input ports is true, false otherwise