Component strings

You are here: All Systems / araneida / utility / strings

(in-package :araneida)

(defun s. (&rest args)
  "Concatenate ARGS as strings"
  (declare (optimize (speed 3)))
  (let ((*print-pretty* nil))
    (with-output-to-string (out)
      (dolist (arg args)
        (princ arg out)
)
)
)
)


(defun remove-if-empty (strings)
  (remove-if (lambda (x) (= (length x) 0)) strings)
)


Lisppaste pastes can be made by anyone at any time. Imagine a fearsomely comprehensive disclaimer of liability. Now fear, comprehensively.