Logic functions
Boolean logic functions from io.deephaven.function.Logic.
| Type | Name | Signature | Description |
|---|---|---|---|
| FUNCTION | and | Boolean(Boolean...) | Ands all of the values in the array together. |
| FUNCTION | and | Boolean(Boolean[], Boolean) | Ands all of the values in the array together. |
| FUNCTION | and | Boolean(ObjectVector) | Ands all of the values in the array together. |
| FUNCTION | and | Boolean(ObjectVector, Boolean) | Ands all of the values in the array together. |
| FUNCTION | and | Boolean(boolean...) | Ands all of the values in the array together. |
| FUNCTION | not | Boolean[](Boolean...) | Not of all values in an array. |
| FUNCTION | not | Boolean[](boolean...) | Not of all values in an array. |
| FUNCTION | or | Boolean(Boolean...) | Ors all of the values in the array together. |
| FUNCTION | or | Boolean(Boolean[], Boolean) | Ors all of the values in the array together. |
| FUNCTION | or | Boolean(boolean...) | Ors all of the values in the array together. |