help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Wanted: Adding list-elements into an existing list


From: Joost Diepenmaat
Subject: Re: Wanted: Adding list-elements into an existing list
Date: Thu, 16 Oct 2008 15:16:29 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux)

Nordlöw <per.nordlow@gmail.com> writes:

> Is there a variant of the function add-to-list(a b) where b can be a
> list aswell?
>
> (add-list-elements-to-list '(a b c) '(c d e)) should evaluate '(a b c
> d e)
>
> or do I have to implement it myself using an iteration-construct?

That's what (append) does:

  append is a built-in function in `C source code'.

  (append &rest SEQUENCES)

  Concatenate all the arguments and make the result a list.  The result
  is a list whose elements are the elements of all the arguments.  Each
  argument may be a list, vector or string.  The last argument is not
  copied, just used as the tail of the new list.


-- 
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/


reply via email to

[Prev in Thread] Current Thread [Next in Thread]