Function: icalendar-date<

icalendar-date< is a byte-compiled function defined in icalendar-utils.el.gz.

Signature

(icalendar-date< DT1 DT2)

Documentation

Return non-nil if date DT1 is strictly earlier than date DT2.

DT1 and DT2 must both be icalendar-date values of the form (MONTH DAY YEAR).

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-utils.el.gz
;;; Date/time comparisons and arithmetic:
(defun ical:date< (dt1 dt2)
  "Return non-nil if date DT1 is strictly earlier than date DT2.
DT1 and DT2 must both be `icalendar-date' values of the form (MONTH DAY YEAR)."
  (< (calendar-absolute-from-gregorian dt1)
     (calendar-absolute-from-gregorian dt2)))