Vector512.WithElement<T>(Vector512<T>, Int32, T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 Vector512<T>,其中指定索引處的項目設為指定值,且其餘項目設定為與指定向量中值的相同值。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector512<T> WithElement(System::Runtime::Intrinsics::Vector512<T> vector, int index, T value);
public static System.Runtime.Intrinsics.Vector512<T> WithElement<T> (this System.Runtime.Intrinsics.Vector512<T> vector, int index, T value);
static member WithElement : System.Runtime.Intrinsics.Vector512<'T> * int * 'T -> System.Runtime.Intrinsics.Vector512<'T>
<Extension()>
Public Function WithElement(Of T) (vector As Vector512(Of T), index As Integer, value As T) As Vector512(Of T)
類型參數
- T
輸入向量的類型。
參數
- vector
- Vector512<T>
要從其中取得剩餘項目的向量。
- index
- Int32
要設定之元素的索引。
- value
- T
要設定元素的值。
傳回
Vector512<T>,其中 index
處的項目值設為 value
,且其餘項目則設定為與 vector
中值的相同值。
例外狀況
index
小於零或大於項目的數目。
不支援 vector
(T
) 的類型。