Vector.WithElement<T>(Vector<T>, Int32, T) Metoda

Definicja

Tworzy nowy Vector<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>
[System::Runtime::CompilerServices::Extension]
 static System::Numerics::Vector<T> WithElement(System::Numerics::Vector<T> vector, int index, T value);
public static System.Numerics.Vector<T> WithElement<T> (this System.Numerics.Vector<T> vector, int index, T value);
static member WithElement : System.Numerics.Vector<'T> * int * 'T -> System.Numerics.Vector<'T>
<Extension()>
Public Function WithElement(Of T) (vector As Vector(Of T), index As Integer, value As T) As Vector(Of T)

Parametry typu

T

Typ elementów w wektorze.

Parametry

vector
Vector<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 Vector<T> o wartości ustawionej index na value wartość i pozostałe elementy ustawione na tę samą wartość co w elemecie vector.

Wyjątki

index wartość była mniejsza niż zero lub większa niż liczba elementów.

Typ vector (T) nie jest obsługiwany.

Dotyczy