Function: org-columns--summary-min

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

Signature

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

Documentation

Compute the minimum 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-min (values printf)
  "Compute the minimum of VALUES.
When PRINTF is non-nil, use it to format the result."
  (format (or printf "%s")
	  (apply #'min (mapcar #'string-to-number values))))