Function: icalendar-match-time-value
icalendar-match-time-value is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-match-time-value S)
Documentation
Match string S against rx icalendar-time.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-type ical:time "TIME"
"Type for Time values.
When printed, a time is a string of six digits HHMMSS, followed
by the letter 'Z' if it is in UTC.
When read, a 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. When
read, the DAY, MONTH, YEAR, and DOW fields are nil, and these
fields and DST are ignored when printed."
'(satisfies ical:-decoded-time-p)
(seq (= 6 digit) (zero-or-one ?Z))
:reader ical:read-time
:printer ical:print-time
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.3.12")