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