Function: org-columns--summary-currencies

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

Signature

(org-columns--summary-currencies VALUES _)

Documentation

Compute the sum of VALUES, with two decimals.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defun org-columns--summary-currencies (values _)
  "Compute the sum of VALUES, with two decimals."
  (format "%.2f" (apply #'+ (mapcar #'string-to-number values))))