Removes the current value from the list
LinkedList<int> list = {3, 4, 5, 6}; list.moveCurrentRight(); list.popCurrent(); //list now contains {3, 5, 6}