bitwiseAnd
ts
const bitwiseAnd: OperatorFn;Defined in: operations.ts:406
Applies a bitwise AND 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 AND operation
Since
1.0.0
Author
Simon Kovtyk
Author
David Schummer