Moves the current node right, then returns the new current node
A reference to the new current node
```cpp LinkedList list = {3, 4, 5, 6}; ++list; //Returns the node at 4 //current is now the node at 4