append


(append  [ list [ list ... ]] )

This function appends all provided list arguments as one list; each list argument must be a list.

Arguments

list  any list expression or value

Return

single list created from all input ists

Example

(append '(1 2 3) '(4 5) '(0) (list "EOS"))
(1 2 3 4 5 0 "EOS")

Remarks

without any list argument, NIL is returned; an error is triggered if any list argument is not a list



©  Bricsys NV. All rights reserved.