Vector<T>.BitwiseAnd(Vector<T>, Vector<T>) Operador

Definición

Devuelve un nuevo vector realizando una operación And bit a bit en cada uno de los elementos de dos vectores.

public:
 static System::Numerics::Vector<T> operator &(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> operator & (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member ( &&& ) : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)>
static member ( &&& ) : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Operator And (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

Parámetros

left
Vector<T>

Primer vector.

right
Vector<T>

Segundo vector.

Devoluciones

Vector resultante de la operación And bit a bit de left y right.

Excepciones

.NET 5 y versiones posteriores: no se admite el tipo T .

Comentarios

El BitwiseAnd método define la operación bit a bit And para Vector<T> los objetos .

Se aplica a