Vector<T>::BitwiseOr Operator
Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.
Namespace: System.Numerics
Assembly: System.Numerics.Vectors (in System.Numerics.Vectors.dll)
Parameters
- left
- Type: System.Numerics::Vector<T>
The first vector.
- right
- Type: System.Numerics::Vector<T>
The second vector.
Return Value
Type: System.Numerics::Vector<T>The vector that results from the bitwise Or of the elements in left and right.
Show: