Function: icalendar--all-events

icalendar--all-events is a byte-compiled function defined in icalendar.el.gz.

Signature

(icalendar--all-events ICALENDAR)

Documentation

Return the list of all existing events in the given ICALENDAR.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
;; private
(defun icalendar--all-events (icalendar)
  "Return the list of all existing events in the given ICALENDAR."
  (let ((result '()))
    (mapc (lambda (elt)
	    (setq result (append (icalendar--get-children elt 'VEVENT)
                                 result)))
	  (nreverse icalendar))
    result))