On Sat, 15 Jan 2011, Liam Healy wrote:

> (defun mkstr (&rest args)
>  "Make a string out of the printed representations of the arguments."
>  (with-output-to-string (s)
>    (dolist (a args) (princ a s))))

Isn't that the same as
(defun mkstr (&rest args)
   "Make a string out of the printed representations of the arguments."
   (format nil "~{~A~}" args))
?

Is this complicated enough to be a standalone, documented function?

- Daniel

_______________________________________________
alexandria-devel mailing list
alexandria-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/alexandria-devel

Reply via email to