Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to define a function that accepts &rest parameters and delegates them to another function.

(html "blah" "foo" baz) => "<html>blahfoobaz</html>"

I did not find a better way than this one:

(defun html (&rest values)
  (concatenate 'string 
               "<html>" 
               (reduce #'(lambda (a b)
                           (concatenate 'string a b))
                       values :initial-value "") 
               "</html>"))

But this looks somewhat glumbsy to me, since line 4 does no more than concatenating the &rest parameter "values". I tried (concatenate 'string "<html>" (values-list values) "</html>") but this does not seem to work (SBCL). Could someone give me an advice?

Kind regards

share|improve this question

3 Answers

(defun html (&rest values) 
  (apply #'concatenate 'string values))
share|improve this answer
Please note the question was changed after I gave this answer. – Michiel Borkent Apr 14 '10 at 11:02

In principle, it will not get much better, unless you use format, but you can use the CL-WHO library, which lets you write HTML in Lisp:

(defun hello-page ()
  (with-html-output-to-string (string)
    (:html (:head (:title "Hello, world!"))
           (:body (:h3 "Hello, World!")
                  (:a :href "http://weitz.de/cl-who/"
                      "The CL-WHO library")))))

Edit: The format way should perhaps also be shown:

(defun html (&rest values)
  (format nil "<html>~{~a~}</html>" values))
share|improve this answer
1  
+1 for the humorous and Lispy way of pointing to CL-WHO :-) – Vijay Mathew Apr 14 '10 at 6:03

Thank you Michiel. This works perfectly. But how does CL know, that this has to be reduced to

apply [#'concatenate 'string] [values]

and not to

apply [#'concatenate] ['string values]

share|improve this answer
That would have been better as a comment to Michiel's answer rather than as an answer in and of itself. As for this question, "it doesn't matter". CONCATENATE expects an initial sequence/type (in this case STRING) and sequences to concatenate. APPLY takes a function designator, individual arguments and a final list of arguments. – Vatine Apr 14 '10 at 8:35
Patrick: I agree with Vatine (on posting a comment and apply). Also see ai.mit.edu/projects/iiip/doc/CommonLISP/HyperSpec/Body/… – Michiel Borkent Apr 14 '10 at 16:57
Apply is the operator, #'concatenate the first argument, 'string the second argument, and values the third argument. There are no precedence considerations in Lisp. – Svante Apr 14 '10 at 17:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.