Removes the current node, then shifts the current node right by 1
LinkedList<int> list = {3, 4, 5}; list.moveCurrentRight(); list.popCurrentNext(); //list now contains {3, 5} //the current node is now on 5