ListVector<T>.GetValue Method

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0

Overload List

GetValue(Int32) Gets the list at the specified index.
GetValue<K>(K) Gets the value at the specified key.

GetValue(Int32)

Gets the list at the specified index.
C#
public override IReadOnlyList<T> GetValue(
	int index
)

Parameters

index  Int32
The zero-based index of the list to retrieve.

Return Value

IReadOnlyList<T>
A read-only list representing the elements at the specified index.

See Also