Function: newsticker--stat-num-items-total

newsticker--stat-num-items-total is a byte-compiled function defined in newst-backend.el.gz.

Signature

(newsticker--stat-num-items-total &optional AGE)

Documentation

Return total number of items in all feeds which have the given AGE.

If AGE is nil, the total number of items is returned.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defun newsticker--stat-num-items-total (&optional age)
  "Return total number of items in all feeds which have the given AGE.
If AGE is nil, the total number of items is returned."
  (apply #'+
         (mapcar (lambda (feed)
                   (if age
                       (newsticker--stat-num-items (intern (car feed)) age)
                     (newsticker--stat-num-items (intern (car feed)))))
                 (append newsticker-url-list-defaults newsticker-url-list))))