OR
- 업데이트 날짜:2023-02-17
- 1분 (읽기 시간)
OR
Computes the logical OR of the inputs. If all inputs are False, this node returns False. Otherwise, it returns True.
This node performs bitwise operations on numeric inputs.
Inputs/Outputs

input
An input to the operation.
This input can be any data type that contains only Boolean values, numbers, or error clusters, such as an array of numbers or a cluster of Booleans. If this input is an error cluster, the node uses only the status element of the error cluster.

logical OR
The logical OR of all inputs.
Examples
| input 0 | input 1 | logical OR |
|---|---|---|
| T | T | T |
| T | F | T |
| F | T | T |
| F | F | F |