Recognize true lists of event landmarks.
(pseudo-event-landmark-listp x) → std::bool
See
Function:
(defun pseudo-event-landmark-listp (x) (declare (xargs :guard t)) (let ((__function__ 'pseudo-event-landmark-listp)) (declare (ignorable __function__)) (if (consp x) (and (pseudo-event-landmarkp (car x)) (pseudo-event-landmark-listp (cdr x))) (null x))))