Check if a list of Java Unicode characters consists of only characters that can be non-starting parts of identifiers.
(identifier-part-listp x) → std::bool
This is an ordinary std::deflist. It is
"loose" in that it does not care whether
Function:
(defun identifier-part-listp (x) (declare (xargs :guard (unicode-listp x))) (let ((__function__ 'identifier-part-listp)) (declare (ignorable __function__)) (if (consp x) (and (identifier-part-p (car x)) (identifier-part-listp (cdr x))) t)))
Theorem:
(defthm identifier-part-listp-of-unicode-list-fix-x (equal (identifier-part-listp (unicode-list-fix x)) (identifier-part-listp x)))
Theorem:
(defthm identifier-part-listp-unicode-list-equiv-congruence-on-x (implies (unicode-list-equiv x x-equiv) (equal (identifier-part-listp x) (identifier-part-listp x-equiv))) :rule-classes :congruence)