Click or drag to resize

RankedMapTKey, TValueValueCollectionElementAt Method

Gets the value at the supplied index.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public TValue ElementAt(
	int index
)

Parameters

index
Type: SystemInt32
The zero-based index of the value to get.

Return Value

Type: TValue
The value at index.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionWhen index is less than zero or greater than or equal to the number of keys.
Remarks
This is a O(log n) operation.
See Also