Function: icalendar-list-of-p

icalendar-list-of-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-list-of-p LIST TYPE)

Documentation

Return non-nil if each value in LIST satisfies TYPE.

TYPE should be a type specifier for cl-typep.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:list-of-p (list type)
  "Return non-nil if each value in LIST satisfies TYPE.
TYPE should be a type specifier for `cl-typep'."
  (seq-every-p (lambda (val) (cl-typep val type)) list))