X-APPEND

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - l1? first element  
  - l2? second element  
&rest
 
  - lst? additional elements  

Description:

Appends lists or atoms together to form a new list.

Ex. (x-append '(1 2 3) '(4 5)) => (1 2 3 4 5)
Ex. (x-append 1 '(4 5)) => (1 4 5)
Ex. (x-append '(1 2 3) 4) => (1 2 3 4)

This function also works with additional elements.

Ex. (x-append '(1 2 3) 4 '(5 6 7)) => (1 2 3 4 5 6 7)