Function: icalendar-recur-subintervals-to-recurrences
icalendar-recur-subintervals-to-recurrences is a byte-compiled
function defined in icalendar-recur.el.gz.
Signature
(icalendar-recur-subintervals-to-recurrences SUBINTERVALS DTSTART &optional VTIMEZONE)
Documentation
Transform SUBINTERVALS into a list of recurrences.
The returned list of recurrences contains all distinct values in each subinterval of the same type as DTSTART.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-recur.el.gz
(defun icr:subintervals-to-recurrences (subintervals dtstart &optional vtimezone)
"Transform SUBINTERVALS into a list of recurrences.
The returned list of recurrences contains all distinct values in each
subinterval of the same type as DTSTART."
(if (cl-typep dtstart 'ical:date)
(icr:subintervals-to-dates subintervals)
(icr:subintervals-to-date-times subintervals vtimezone)))