ILongArrayEnumerator Interface |
Namespace: Tangosol.Util
public interface ILongArrayEnumerator : IEnumerator
The ILongArrayEnumerator type exposes the following members.
Name | Description | |
---|---|---|
![]() | Current | Gets the current element in the collection. (Inherited from IEnumerator.) |
![]() | Index |
Returns the index of the current value, which is the value
returned by the most recent call to the MoveNext method.
|
Name | Description | |
---|---|---|
![]() | GetValue |
Returns the current value, which is the same value returned by
the most recent call to the MoveNext method, or the most
recent value passed to SetValue if SetValue were
called after the MoveNext method.
|
![]() | MoveNext | Advances the enumerator to the next element of the collection. (Inherited from IEnumerator.) |
![]() | Reset | Sets the enumerator to its initial position, which is before the first element in the collection. (Inherited from IEnumerator.) |
![]() | SetValue |
Stores a new value at the current value index, returning the
value that was replaced. The index of the current value is
obtainable by reading the Index property.
|