ROTATE

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - list the list  
&optional
 
  - nth nth [default = 1]

Description:

Returns a circular permutation of <list> starting from its <nth> element.

Ex. (rotate '(a b c d e) 1) => (b c d e a)
Ex. (rotate '(a b c d e) 3) => (d e a b c)