Function: org-columns--summary-mean-time
org-columns--summary-mean-time is a byte-compiled function defined in
org-colview.el.gz.
Signature
(org-columns--summary-mean-time TIMES _)
Documentation
Compute the mean time among TIMES.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defun org-columns--summary-mean-time (times _)
"Compute the mean time among TIMES."
(org-columns--summary-apply-times
(lambda (&rest values) (/ (apply #'+ values) (float (length values))))
times))