TLinkedListNode<T> Class

Definition

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

Delphi
type TLinkedListNode<T> = class(TObject)

Type Parameters

T

Specifies the element type of the linked list.

Inheritance
TObject
TLinkedListNode<T>

Constructors

Properties

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.

Methods

Fields