Method NextNode : Node ()
Returns the node after this node, or null if this is the last node in the list.
Impressum, Datenschutzerklärung
See the List class for a discussion of list nodes. More...
Methods | |
---|---|
NextNode : Node () |
Returns the node after this node, or null if this is the last node in the list. |
PrevNode : Node () |
Returns the node before this node, or null if this is the first node in the list. |
Remove : Int () |
Removes this node from the list. |
Value : T () |
Returns the value stored in the node. |
See the List class for a discussion of list nodes.
Method NextNode : Node ()
Returns the node after this node, or null if this is the last node in the list.
Method PrevNode : Node ()
Returns the node before this node, or null if this is the first node in the list.
Method Remove : Int ()
Removes this node from the list.
This method should only be used once - attempting to remove a node twice will result in a null object error.
Method Value : T ()
Returns the value stored in the node.