Shifts all the elements of a list by "half" to the left, moving the first half of the first element to the end of the list.
Example:
Before:
(a1, b1), (a2, b2), (a3, b3)
After:
(b1, a2), (b2, a3), (b3, a1)