Function: elp-sort-by-call-count
elp-sort-by-call-count is a byte-compiled function defined in
elp.el.gz.
Signature
(elp-sort-by-call-count VEC1 VEC2)
Documentation
Predicate to sort by highest call count. See sort.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/elp.el.gz
(defun elp-sort-by-call-count (vec1 vec2)
"Predicate to sort by highest call count. See `sort'."
(>= (aref vec1 0) (aref vec2 0)))