Base interface representing a singly linked list node. Defines the minimal structure required for singly linked list operations.
Reference to the next node in the list. Set to null if this is the last node or detached from the list.
null
Base interface representing a singly linked list node. Defines the minimal structure required for singly linked list operations.