Vector<T>.ExclusiveOr(Vector<T>, Vector<T>) Operatore

Definizione

Restituisce un nuovo vettore eseguendo un'operazione bit per XOr bit su ognuno degli elementi in due vettori.

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)>
Public Shared Operator Xor (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

Parametri

left
Vector<T>

Primo vettore.

right
Vector<T>

Secondo vettore.

Valori restituiti

Vettore risultante dall'oggetto bit per XOr bit degli elementi in left e right.

Eccezioni

.NET 5 e versioni successive: il tipo T non è supportato.

Commenti

Il ExclusiveOr metodo definisce l'operazione bit per XOr bit per Vector<T> gli oggetti .

Si applica a