Function: icalendar-recur--w/in-abs-p

icalendar-recur--w/in-abs-p is a byte-compiled function defined in icalendar-recur.el.gz.

Signature

(icalendar-recur--w/in-abs-p DT START &optional END)

Documentation

Check whether DT falls after START (and before END, if any).

DT must be a Lisp time stamp and START and END must be icalendar-date-times. The check is performed with icalendar-time<=.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-recur.el.gz
(defun icr:-w/in-abs-p (dt start &optional end)
  "Check whether DT falls after START (and before END, if any).
DT must be a Lisp time stamp and START and END must be `icalendar-date-time's.
The check is performed with `icalendar-time<='."
  (and
   (ical:time<= (encode-time start) dt)
   (or (not end)
       (ical:time<= dt (encode-time end)))))