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

定義

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

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

型パラメーター

T

入力ベクターの型。

パラメーター

vector
Vector512<T>

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

value
Vector256<T>

上位 256 ビットの 値を として指定 Vector256<T>します。

戻り値

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

例外

vector の型 (T) がサポートされていません。

適用対象