lispdoc - results for concatenate |
(concatenate output-type-spec &rest sequences) | Function: Return a new sequence of all the argument sequences concatenated together which shares no structure with the original argument sequences of the specified OUTPUT-TYPE-SPEC.
|
Example:(defun out-debug-js-function () "Output the debugging setting and function." (concatenate 'string "var clajax_debug = " (to-js-boolean *clajax-debug*) "; function debug_alert(text) { if (clajax_debug) alert(\"CLAJAX: \" + text); } ")) | Mentioned in: CLtL2 - 14.2. Concatenating, Mapping, and Reducing Sequences CLtL2 - 15.2. Lists HyperSpec - Function CONCATENATE On Lisp - Classes and Instances On Lisp - Operations on Lists PCL - hash table iteration PCL - sequence mapping functions PCL - sorting and merging PCL - whole sequence manipulations Successful Lisp - chapter13 |
(babel:concatenate-strings-to-octets encoding &rest strings) | Function: Optimized equivalent of (string-to-octets (apply #'concatenate 'string strings) :encoding encoding)
|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |