mylist.push_front()
mylist.pop_back()
12345
while (true) { for(int i = 0; i < 4; ++i) mylist.push_front(); mylist.pop_back(); }