Readonly
listThe linked list which created and owns the node.
This will be null
when the node is removed from the list.
Readonly
nextThe next node in the list.
This will be null
when the node is the last node in the list
or when the node is removed from the list.
Readonly
prevThe previous node in the list.
This will be null
when the node is the first node in the list
or when the node is removed from the list.
Readonly
valueThe user value stored in the node.
An object which represents a node in a linked list.
Notes
User code will not create linked list nodes directly. Nodes are created automatically when values are added to a list.