append -- r7rs Definition
§

Kind
§

procedure;

Implemented by
§

Procedure signature
§

Procedure variants:

Exports
§

Exports recursive
§

Description
§

(append list ...)

Domain: The last argument, if there is one, can be of any type.

Returns a list consisting of the elements of the first list followed by the elements of the other lists. If there are no arguments, the empty list is returned. If there is exactly one argument, it is returned. Otherwise the resulting list is always newly allocated, except that it shares structure with the last argument. An improper list results if the last argument is not a proper list.

(append '(x) '(y))              ===>  (x y)
(append '(a) '(b c d))          ===>  (a b c d)
(append '(a (b)) '((c)))        ===>  (a (b) (c))
(append '(a b) '(c . d))        ===>  (a b c . d)
(append '() 'a)                 ===>  a

The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.

Referenced-types
§