Function: org-columns--summary-max

org-columns--summary-max is a byte-compiled function defined in org-colview.el.gz.

Signature

(org-columns--summary-max VALUES PRINTF)

Documentation

Compute the maximum of VALUES.

When PRINTF is non-nil, use it to format the result.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defun org-columns--summary-max (values printf)
  "Compute the maximum of VALUES.
When PRINTF is non-nil, use it to format the result."
  (format (or printf "%s")
	  (apply #'max (mapcar #'string-to-number values))))