Function: timeclock-day-list-template

timeclock-day-list-template is a byte-compiled function defined in timeclock.el.gz.

Signature

(timeclock-day-list-template FUNC DAY-LIST)

Documentation

Template for summing the result of FUNC on each element of DAY-LIST.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defun timeclock-day-list-template (func day-list)
  "Template for summing the result of FUNC on each element of DAY-LIST."
  (let ((length 0))
    (dolist (day day-list)
      (setq length (+ length (funcall func day))))
    length))