Function: icalendar-value-node-p
icalendar-value-node-p is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-value-node-p NODE)
Documentation
Return non-nil if NODE is a syntax node whose type is a value type.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:value-node-p (node)
"Return non-nil if NODE is a syntax node whose type is a value type."
(and (ical:ast-node-p node)
(ical:value-type-symbol-p (ical:ast-node-type node))))