Function: helpful--sort-symbols

helpful--sort-symbols is a byte-compiled function defined in helpful.el.

Signature

(helpful--sort-symbols SYM-LIST)

Documentation

Sort symbols in SYM-LIST alphabetically.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--sort-symbols (sym-list)
  "Sort symbols in SYM-LIST alphabetically."
  (--sort
   (string< (symbol-name it) (symbol-name other))
   sym-list))