Vector512.WithLower<T>(Vector512<T>, Vector256<T>) メソッド

定義

下位 256 ビットが指定した値に設定され、上位 256 ビットが指定されたベクター内の値と同じ値に設定された新しい Vector512<T> を作成します。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Runtime::Intrinsics::Vector512<T> WithLower(System::Runtime::Intrinsics::Vector512<T> vector, System::Runtime::Intrinsics::Vector256<T> value);
public static System.Runtime.Intrinsics.Vector512<T> WithLower<T>(this System.Runtime.Intrinsics.Vector512<T> vector, System.Runtime.Intrinsics.Vector256<T> value);
static member WithLower : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector256<'T> -> System.Runtime.Intrinsics.Vector512<'T>
<Extension()>
Public Function WithLower(Of T) (vector As Vector512(Of T), value As Vector256(Of T)) As Vector512(Of T)

型パラメーター

T

入力ベクターの型。

パラメーター

vector
Vector512<T>

上位 256 ビットを取得するベクトル。

value
Vector256<T>

Vector256<T>としての下位 256 ビットの値。

返品

下位 256 ビットがvalueに設定され、上位 256 ビットがvectorと同じ値に設定された新しいVector512<T>

例外

vector (T) の種類はサポートされていません。

適用対象