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

Definição

Devolve um novo vetor realizando uma operação bit a And bit 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.

Devoluções

O vetor que resulta do bit a And bit de left e right.

Exceções

.NET 5 e posteriores: O Tipo T não é suportado.

Observações

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

Aplica-se a