Returns a list containing all but the first element of the specified list
(cdr list)
Arguments
A list.
Return Values
cdr returns nil.
A list containing all the elements of list, except the first element (but see Note below). If the list is empty,Examples
Command: (cdr '(a b c))
(B C)
Command: (cdr '((a b) c))
(C)
Command: (cdr '())
nil
Command: (cdr '(a . b))
B
Command: (cdr '(1 . "Text"))
"Text"
Point Lists topic in the AutoLISP Developer's Guide.
The