Gets the vector element at the specified position.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract T GetValue(
int index
)
Public MustOverride Function GetValue (
index As Integer
) As T
public:
virtual T GetValue(
int index
) abstract
abstract GetValue :
index : int -> 'T
Parameters
- index
- Type: SystemInt32
The zero-based index of the element.
Return Value
Type:
TThe element of the
VectorT in the
indexth position.
This method does not perform bounds checking. It is provided
for optimized access in situations where the argument is known to be
within bounds. If the argument is outside its valid range, the result
is unspecified.
Reference