Vector64.WithElement<T>(Vector64<T>, Int32, T) Method
Definition
Creates a new Vector64<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:
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 static System.Runtime.Intrinsics.Vector64<T> WithElement<T> (this System.Runtime.Intrinsics.Vector64<T> vector, int index, T value) where T : struct;
static member WithElement : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * int * 'T -> System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> (requires 'T : struct)
<Extension()>
Public Function WithElement(Of T As Structure) (vector As Vector64(Of T), index As Integer, value As T) As Vector64(Of T)
Type Parameters
- T
The type of the input vector.
Parameters
- vector
- Vector64<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 Vector64<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
The type of vector
(T
) is not supported.
index
was less than zero or greater than the number of elements.