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

Definizione

Restituisce un nuovo vettore tramite un'operazione Or bit per bit in 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 Or (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.

Restituisce

Vector<T>

Vettore risultante dall'operazione Or bit per bit degli elementi in left e right.

Eccezioni

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

Commenti

Il BitwiseOr metodo definisce l'operazione bit per bit Or per Vector<T> gli oggetti.

Si applica a