Function: s-concat
s-concat is a byte-compiled function defined in s.el.
Signature
(s-concat &rest STRINGS)
Documentation
Join all the string arguments into one string.
Source Code
;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-concat (&rest strings)
"Join all the string arguments into one string."
(declare (pure t) (side-effect-free t))
(apply 'concat strings))