C# Class LSCollections.SkipList.SkipListEnumerator

Enumerates the elements of a skip list.
Inheritance: IDictionaryEnumerator
Mostra file Open project: jeske/StepsDB-alpha

Public Methods

Method Description
MoveNext ( ) : bool

Advances the enumerator to the next element of the skip list.

Reset ( ) : void

Sets the enumerator to its initial position, which is before the first element in the skip list.

SkipListEnumerator ( SkipList list ) : System

Initializes an instance of a SkipListEnumerator.

Method Details

MoveNext() public method

Advances the enumerator to the next element of the skip list.
public MoveNext ( ) : bool
return bool

Reset() public method

Sets the enumerator to its initial position, which is before the first element in the skip list.
public Reset ( ) : void
return void

SkipListEnumerator() public method

Initializes an instance of a SkipListEnumerator.
public SkipListEnumerator ( SkipList list ) : System
list SkipList
return System