Interface representing a singly linked list data structure. Implements the base linked list interface with singly linked nodes.
The type of nodes in the list, must extend ISinglyLinkedListNode. Defaults to the base ISinglyLinkedListNode if not specified.
ISinglyLinkedListNode
Reference to the first node in the list. Set to null when the list is empty.
null
The current number of nodes in the list.
Reference to the last node in the list. Set to null when the list is empty.
Interface representing a singly linked list data structure. Implements the base linked list interface with singly linked nodes.