vle-append
(vle-append lst item)
append 'item' to the list 'lst'; 'item' can be
any expression;
fast replacement for (append lst (list
item))
|
Arguments |
lst any valid list |
|
Return |
the list 'lst' appended by 'item' |
|
Example |
(vle-append '(1 2 3) '(4 5 6)) returns (1 2 3 (4 5 6)) |
|
Alias |
|
|
Remarks |
other than (append) function, the item to be appended does not need to be wrapped into extra (list ...) around ! |
| © Menhirs NV. All rights reserved. |