TLinkedListNode<T> Class

Represents a node in a ILinkedList<T> . This class cannot be inherited.

Namespace: Spring.Collections
TObject
  Spring.Collections.TLinkedListNode<T>
type
 TLinkedListNode<T> = class sealed
 end;

Type Parameters

T
Specifies the element type of the linked list.

The TLinkedListNode<T> type exposes the following members.

Show:
 NameDescription
Create(T)

Overloaded. Initializes a new instance of the TLinkedListNode<T> class.

Top
Show:
 NameDescription
List

Represents property List.

Next

Gets the next node in the ILinkedList<T> .

Previous

Gets the previous node in the ILinkedList<T> .

Value

Gets the value contained in the node.

Top
Show:
 NameDescription
GetList

Represents method GetList.

GetNext

Represents method GetNext.

GetPrevious

Represents method GetPrevious.

Top
Show:
 NameDescription
fItem

Represents field fItem.

fList

Represents field fList.

fNext

Represents field fNext.

fPrev

Represents field fPrev.

Top