Function: icalendar-expects-list-of-values-p
icalendar-expects-list-of-values-p is a byte-compiled function defined
in icalendar-ast.el.gz.
Signature
(icalendar-expects-list-of-values-p TYPE)
Documentation
Return non-nil if TYPE expects a list of values.
This is never t for value types or component types. For property and
parameter types defined with icalendar-define-param and
icalendar-define-property, it is true if the :list-sep argument was
specified in the definition.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-ast.el.gz
(defun ical:expects-list-of-values-p (type)
"Return non-nil if TYPE expects a list of values.
This is never t for value types or component types. For property and
parameter types defined with `icalendar-define-param' and
`icalendar-define-property', it is true if the :list-sep argument was
specified in the definition."
(and (ical:type-symbol-p type)
(get type 'ical:list-sep)))