Generates an iterator that traverses a singly linked list in order.
O(n)
O(1)
The type of the singly linked list node.
The head node of the list, or null if the list is empty.
head
null
An iterator yielding nodes in forward order.
Generates an iterator that traverses a singly linked list in order.
O(n)
O(1)
- only stores current node reference.