std-rotate-left | ![]() |
STD-ROTATE-LEFT
rotates the list leftwise. It moves the first element to the end. It is not destructive, it always returns a copy.
It is the complement to STD-ROTATE-RIGHT
.
(std-rotate-left '(0 1 2 3 4)) => (1 2 3 4 0)
lst: any proper list.
A list.
None.
(std-require 'STDLIST)
Defined in STDLIST