bitwiseOr
ts
const bitwiseOr: OperatorFn;Defined in: operations.ts:380
Applies a bitwise OR across all arguments.
Remarks
Evaluated from left to right: a | b | c is evaluated as (a | b) | c
All arguments are converted to numbers before evaluation.
Param
Numeric arguments
Returns
Result of the bitwise OR operation
Since
1.0.0
Author
Simon Kovtyk
Author
David Schummer