Vector128.IsInteger<T>(Vector128<T>) メソッド

定義

ベクトル内のどの要素が整数値であるかを決定します。

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

型パラメーター

T

ベクター内の要素の型。

パラメーター

vector
Vector128<T>

チェックするベクター。

返品

vectorの対応する要素が整数値かどうかに応じて、要素が全ビットセットまたはゼロであるベクトル。

注釈

このメソッドは浮動小数点値を正しく処理するため、対応する要素2.03.0all-bits-setを返しますが、2.23.3zeroを返します。

適用対象