C# Class LSCollections.SkipList.Node

Represents a node in the SkipList.
Inheritance: IDisposable
Mostra file Open project: jeske/StepsDB-alpha

Public Properties

Property Type Description
entry System.Collections.DictionaryEntry
forward Node[]

Public Methods

Method Description
Dispose ( ) : void

Disposes the Node.

Node ( int level ) : System

Initializes an instant of a Node with its node level.

Node ( int level, object key, object val ) : System

Initializes an instant of a Node with its node level and key/value pair.

Method Details

Dispose() public method

Disposes the Node.
public Dispose ( ) : void
return void

Node() public method

Initializes an instant of a Node with its node level.
public Node ( int level ) : System
level int /// The node level. ///
return System

Node() public method

Initializes an instant of a Node with its node level and key/value pair.
public Node ( int level, object key, object val ) : System
level int /// The node level. ///
key object /// The key for the node. ///
val object /// The value for the node. ///
return System

Property Details

entry public_oe property

public DictionaryEntry,System.Collections entry
return System.Collections.DictionaryEntry

forward public_oe property

public Node[] forward
return Node[]