| Class | Description |
|---|---|
| BitwiseAnd<T extends Number> |
Elementwise computes the bitwise AND of `x` and `y`.
|
| BitwiseOr<T extends Number> |
Elementwise computes the bitwise OR of `x` and `y`.
|
| BitwiseXor<T extends Number> |
Elementwise computes the bitwise XOR of `x` and `y`.
|
| Invert<T extends Number> |
Invert (flip) each bit of supported types; for example, type `uint8` value 01010101 becomes 10101010.
|
| LeftShift<T extends Number> |
Elementwise computes the bitwise left-shift of `x` and `y`.
|
| RightShift<T extends Number> |
Elementwise computes the bitwise right-shift of `x` and `y`.
|
Copyright © 2015–2019. All rights reserved.