Vector64.IsOddInteger<T>(Vector64<T>) 方法

定义

确定向量中的哪些元素是奇数整数值。

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector64<T> IsOddInteger(System::Runtime::Intrinsics::Vector64<T> vector);
public static System.Runtime.Intrinsics.Vector64<T> IsOddInteger<T>(System.Runtime.Intrinsics.Vector64<T> vector);
static member IsOddInteger : System.Runtime.Intrinsics.Vector64<'T> -> System.Runtime.Intrinsics.Vector64<'T>
Public Function IsOddInteger(Of T) (vector As Vector64(Of T)) As Vector64(Of T)

类型参数

T

向量中的元素的类型。

参数

vector
Vector64<T>

要检查的向量。

返回

一个矢量,其元素是全位集或零,具体取决于中相应的元素 vector 是否为奇数整数值。

适用于