Click or drag to resize

RankedMapTKey, TValueKeyCollectionItem Property

Gets the key at the supplied index.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public TKey this[
	int index
] { get; }

Parameters

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

Return Value

Type: TKey
The key at index.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionWhen index is less than zero or not less than the number of items.
Remarks
This is a O(log n) operation.
See Also