Function: icalendar-match-date-time-value

icalendar-match-date-time-value is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-date-time-value S)

Documentation

Match string S against rx icalendar-date-time.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-type ical:date-time "DATE-TIME"
   "Type for Date-Time values.

When printed, a date-time is a string of digits like:
  YYYYMMDDTHHMMSS
where the 'T' is literal, and separates the date string from the time
string.  If followed by a 'Z', the string represents a UTC date-time.

When read, a date-time is a decoded time, i.e. a list in the format
(SEC MINUTE HOUR DAY MONTH YEAR DOW DST UTCOFF).  See
`decode-time' for the specifics of the individual values."
   '(satisfies ical:-decoded-date-time-p)
  (seq ical:date ?T ical:time)
  :reader ical:read-date-time
  :printer ical:print-date-time
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.3.5")