2014-12-25 17:05:29 +01:00

47 lines
1010 B
Markdown

# Function bitAnd
Bitwise AND two values, `x & y`.
For matrices, the function is evaluated element wise.
## Syntax
```js
math.bitAnd(x, y)
```
### Parameters
Parameter | Type | Description
--------- | ---- | -----------
`x` | Number | BigNumber | Boolean | Array | Matrix | null | First value to and
`y` | Number | BigNumber | Boolean | Array | Matrix | null | Second value to and
### Returns
Type | Description
---- | -----------
Number | BigNumber | Array | Matrix | AND of `x` and `y`
## Examples
```js
math.bitAnd(53, 131); // returns Number 1
math.bitAnd([1, 12, 31], 42); // returns Array [0, 8, 10]
```
## See also
[bitNot](bitNot.md),
[bitOr](bitOr.md),
[bitXor](bitXor.md),
[leftShift](leftShift.md),
[rightArithShift](rightArithShift.md),
[rightLogShift](rightLogShift.md)
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->