LinkListNode<T>.Advance Method
Public Function Advance( _
ByVal n As Integer _
) As LinkListNode(Of T)
This language is not supported or no code example is available.
public LinkListNode<T> Advance(
int n
)
This language is not supported or no code example is available.
public:
LinkListNode<T^>^ Advance(
int n
)
This language is not supported or no code example is available.
Parameters
- n
- int
The number of steps to advance. Can be negative.
Return Value
LinkListNode<T>The node n steps away, or null if out of list bounds.