Node.next

One of: - the real successor Node - this Node, meaning the successor is head.next - null, meaning there is no successor (this is the last node)

class Node(E)
Node!(E) next;

Meta