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

Definition

Creates a new Vector<T> with the element at the specified index set to the specified value and the remaining elements set to the same value as that in the given vector.

public static System.Numerics.Vector<T> WithElement<T> (this System.Numerics.Vector<T> vector, int index, T value);

Type Parameters

T

The type of the elements in the vector.

Parameters

vector
Vector<T>

The vector to get the remaining elements from.

index
Int32

The index of the element to set.

value
T

The value to set the element to.

Returns

A Vector<T> with the value of the element at index set to value and the remaining elements set to the same value as that in vector.

Exceptions

index was less than zero or greater than the number of elements.

The type of vector (T) is not supported.

Applies to

Product Versions
.NET 8, 9