Next: SRFI-1 Length Append etc, Previous: SRFI-1 Predicates, Up: SRFI-1
These are synonyms for
car
,cadr
,caddr
, ....
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 the a list containing the i last elements of lst. The return shares a common tail with lst.
Return the 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.