Vector.OnesComplement<T>(Vector<T>) 方法

定义

返回一个新向量,其元素是通过获取指定向量元素的补数获得的。

public:
generic <typename T>
 where T : value class static System::Numerics::Vector<T> OnesComplement(System::Numerics::Vector<T> value);
public:
generic <typename T>
 static System::Numerics::Vector<T> OnesComplement(System::Numerics::Vector<T> value);
public static System.Numerics.Vector<T> OnesComplement<T>(System.Numerics.Vector<T> value) where T : struct;
public static System.Numerics.Vector<T> OnesComplement<T>(System.Numerics.Vector<T> value);
static member OnesComplement : System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)> (requires 'T : struct)
static member OnesComplement : System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Function OnesComplement(Of T As Structure) (value As Vector(Of T)) As Vector(Of T)
Public Function OnesComplement(Of T) (value As Vector(Of T)) As Vector(Of T)
Public Function OnesComplement(Of T As Structure) (value As Vector(Of T)) As Vector(Of T)

类型参数

T

矢量类型。 T 可以是任何基元数值类型。

参数

value
Vector<T>

源向量。

返回

生成的向量。

适用于