Function: icalendar-printable-value-type-symbol-p
icalendar-printable-value-type-symbol-p is a byte-compiled function
defined in icalendar-parser.el.gz.
Signature
(icalendar-printable-value-type-symbol-p SYMBOL)
Documentation
Return non-nil if SYMBOL represents a printable iCalendar value type.
This means that SYMBOL names a type for a property or parameter value
defined by icalendar-define-type which has a print name (mainly for
use in icalendar-valuetypeparam parameters). That is, SYMBOL must *both*
satisfy icalendar-value-type-symbol-p and be associated with a print
name in icalendar-value-types.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:printable-value-type-symbol-p (symbol)
"Return non-nil if SYMBOL represents a printable iCalendar value type.
This means that SYMBOL names a type for a property or parameter value
defined by `icalendar-define-type' which has a print name (mainly for
use in `icalendar-valuetypeparam' parameters). That is, SYMBOL must *both*
satisfy `icalendar-value-type-symbol-p' and be associated with a print
name in `icalendar-value-types'."
(and (ical:value-type-symbol-p symbol)
(rassq symbol ical:value-types)))