These are synonyms for car
, cadr
, caddr
, ….
Return two values, the CAR and the CDR of pair.
(car+cdr '(0 1 2 3)) ⇒ 0 (1 2 3)
Return a list containing the first i elements of lst.
take!
may modify the structure of the argument list lst
in order to produce the result.
Return a list containing all but the first i elements of lst.
Return a list containing the i last elements of lst. The return shares a common tail with lst.
Return a list containing all but the i last elements of lst.
drop-right
always returns a new list, even when i is
zero. drop-right!
may modify the structure of the argument
list lst in order to produce the result.
Return two values, a list containing the first i elements of the list lst and a list containing the remaining elements.
split-at!
may modify the structure of the argument list
lst in order to produce the result.
Return the last element of the non-empty, finite list lst.