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