Macro: WITH-YACLML-OUTPUT-TO-STRING

Documentation

Evaluate BODY with *yaclml-stream* bound to a string stream, return the string.

Source

(defmacro with-yaclml-output-to-string (&body body)
  "Evaluate BODY with *yaclml-stream* bound to a string stream, return the string."
  (with-unique-names (output)
    `(with-output-to-string (,output)
       (with-yaclml-stream ,output
         ,@body))))
Source Context