Function: icalendar-recur--w/in-locally-p
icalendar-recur--w/in-locally-p is a byte-compiled function defined in
icalendar-recur.el.gz.
Signature
(icalendar-recur--w/in-locally-p DT START &optional END)
Documentation
Check whether DT falls after START (and before END, if any).
All three values must be icalendar-date-times. The check is performed with
icalendar-date-time-locally<=.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-recur.el.gz
(defun icr:-w/in-locally-p (dt start &optional end)
"Check whether DT falls after START (and before END, if any).
All three values must be `icalendar-date-time's. The check is performed with
`icalendar-date-time-locally<='."
(and
(ical:date-time-locally<= start dt)
(or (not end)
(ical:date-time-locally<= dt end))))