Function: s-equals?

s-equals? is a byte-compiled function defined in s.el.

Signature

(s-equals? S1 S2)

Documentation

Is S1 equal to S2?

This is a simple wrapper around the built-in string-equal.

Aliases

s-equals-p

Source Code

;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-equals? (s1 s2)
  "Is S1 equal to S2?

This is a simple wrapper around the built-in `string-equal'."
  (declare (pure t) (side-effect-free t))
  (string-equal s1 s2))