Function: icalendar-rdate-property-p

icalendar-rdate-property-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-rdate-property-p NODE)

Documentation

Return non-nil if NODE represents a RDATE property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:rdate "RDATE"
  "Recurrence Date-Times.

This property defines a list of date-times or dates on which an
`icalendar-vevent', `icalendar-todo', `icalendar-vjournal',
`icalendar-standard', or `icalendar-daylight' component recurs.
Together with the `icalendar-dtstart', `icalendar-rrule', and
`icalendar-exdate' properties, it defines the recurrence set of
the component."
  (or ical:period
      ical:date-time
      ical:date)
  :default-type ical:date-time
  :other-types (ical:date ical:period)
  :list-sep ","
  :child-spec (:zero-or-one (ical:valuetypeparam ical:tzidparam)
               :zero-or-more (ical:otherparam))
  :other-validator ical:property-w/tzid-validator
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.5.2")