Click or drag to resize

ILongArray Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An interface, similar in its methods to IList, and similar in its purpose to an array, designed for sparse storage and indexed by long values.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface ILongArray

The ILongArray type exposes the following members.

Properties
  NameDescription
Public propertyCount
Determine the size of the ILongArray.
Public propertyFirstIndex
Determine the first index that exists in the ILongArray.
Public propertyIsEmpty
Determine if ILongArray is empty.
Public propertyItem
The value stored at the specified index.
Public propertyLastIndex
Determine the last index that exists in the ILongArray.
Public propertySyncRoot
Gets an object that can be used to synchronize access to this ILongArray.
Top
Methods
  NameDescription
Public methodAdd
Add the passed element value to the ILongArray and return the index at which the element value was stored.
Public methodClear
Remove all elements from the ILongArray.
Public methodContains
Determine if the ILongArray contains the specified element.
Public methodEquals
Test for ILongArray equality.
Public methodExists
Determine if the specified index is in use.
Public methodGetEnumerator
Obtain an IEnumerator of the contents of the ILongArray.
Public methodGetEnumerator(Int64)
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.
Public methodRemove
Remove the specified index from the ILongArray, returning its associated value.
Public methodToString
Provide a string representation of the ILongArray.
Top
Remarks
Unlike the IList interface, the ILongArray interface assumes that every valid index (i.e. greater than or equal to zero) can be accessed and has storage available.
See Also