Warning: This is the manual of the legacy Guile 2.0 series. You may want to read the manual of the current stable series instead.
Next: SRFI-1 Length Append etc, Previous: SRFI-1 Predicates, Up: SRFI-1 [Contents][Index]
These are synonyms for car
, cadr
, caddr
, ….
Return two values, the CAR and the CDR of pair.
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.
Next: SRFI-1 Length Append etc, Previous: SRFI-1 Predicates, Up: SRFI-1 [Contents][Index]