Vector64.WithElement<T>(Vector64<T>, Int32, T) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Tworzy nowy Vector64<T> element z określonym indeksem ustawionym na określoną wartość, a pozostałe elementy ustawione na tę samą wartość co w danym wektorze.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector64<T> WithElement(System::Runtime::Intrinsics::Vector64<T> vector, int index, T value);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Runtime::Intrinsics::Vector64<T> WithElement(System::Runtime::Intrinsics::Vector64<T> vector, int index, T value);
public static System.Runtime.Intrinsics.Vector64<T> WithElement<T> (this System.Runtime.Intrinsics.Vector64<T> vector, int index, T value) where T : struct;
public static System.Runtime.Intrinsics.Vector64<T> WithElement<T> (this System.Runtime.Intrinsics.Vector64<T> vector, int index, T value);
static member WithElement : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * int * 'T -> System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> (requires 'T : struct)
static member WithElement : System.Runtime.Intrinsics.Vector64<'T> * int * 'T -> System.Runtime.Intrinsics.Vector64<'T>
<Extension()>
Public Function WithElement(Of T As Structure) (vector As Vector64(Of T), index As Integer, value As T) As Vector64(Of T)
<Extension()>
Public Function WithElement(Of T) (vector As Vector64(Of T), index As Integer, value As T) As Vector64(Of T)
Parametry typu
- T
Typ wektora wejściowego.
Parametry
- vector
- Vector64<T>
Wektor umożliwiający uzyskanie pozostałych elementów.
- index
- Int32
Indeks elementu do ustawienia.
- value
- T
Wartość, na która ma zostać ustawiona wartość elementu.
Zwraca
Element Vector64<T> o wartości ustawionej index
na value
wartość i pozostałe elementy ustawione na tę samą wartość co w elemecie vector
.
Wyjątki
Typ vector
(T
) nie jest obsługiwany.
index
wartość była mniejsza niż zero lub większa niż liczba elementów.