Windows apps
Collapse the table of content
Expand the table of content

Vector<T>::BitwiseAnd Operator

Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
static Vector<T> operator &(
	Vector<T> left, 
	Vector<T> right
)

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 And of left and right.

The BitwiseAnd method defines the bitwise And operation for Vector<T> objects.

Show:
© 2017 Microsoft