Function: s-less?
s-less? is a byte-compiled function defined in s.el.
Signature
(s-less? S1 S2)
Documentation
Is S1 less than S2?
This is a simple wrapper around the built-in string-lessp.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-less? (s1 s2)
"Is S1 less than S2?
This is a simple wrapper around the built-in `string-lessp'."
(declare (pure t) (side-effect-free t))
(string-lessp s1 s2))