Click or drag to resize

LongSortedListGetEnumerator Method (Int64)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Obtain an IEnumerator of the contents of the ILongArray, starting at a particular index such that the first call to MoveNext will set the location of the enumerator at the first existent index that is greater than or equal to the specified index, or will throw an IndexOutOfRangeException if there is no such existent index.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public virtual IEnumerator GetEnumerator(
	long index
)

Parameters

index
Type: SystemInt64
The ILongArray index to iterate from.

Return Value

Type: IEnumerator
An instance of IEnumerator.

Implements

ILongArrayGetEnumerator(Int64)
Exceptions
ExceptionCondition
IndexOutOfRangeException If index greater than or equal to the specified index does not exist.
See Also