Vector<T>.OnesComplement(Vector<T>) 演算子

定義

指定したベクトルの要素の 1 の補数をとった値を要素とする新しいベクトルを返します。

public:
 static System::Numerics::Vector<T> operator ~(System::Numerics::Vector<T> value);
public static System.Numerics.Vector<T> operator ~ (System.Numerics.Vector<T> value);
static member op_OnesComplement : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)>
Public Shared Operator Not (value As Vector(Of T)) As Vector(Of T)

パラメーター

value
Vector<T>

ソース ベクトル。

戻り値

Vector<T>

1 の補数ベクトル。

例外

.NET 5 以降: 型 T はサポートされていません。

適用対象