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

Definição

Retorna um novo vetor executando uma operação bit a bit And em cada um dos elementos em dois vetores.

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>

O primeiro vetor.

right
Vector<T>

O segundo vetor.

Retornos

O vetor resultante da operação bit a bit And de left e right.

Exceções

.NET 5 e posterior: não há suporte para tipo T .

Comentários

O BitwiseAnd método define a operação bit a bit And para Vector<T> objetos .

Aplica-se a