(pr-str-with-opts objs opts)
Prints a sequence of objects to a string, observing all the options given in opts
(defn pr-str-with-opts [objs opts] (if (empty? objs) "" (str (pr-sb-with-opts objs opts))))