(chars-in-charset-p x set) recognizes lists of characters
(chars-in-charset-p x set) → std::bool
This is an ordinary std::deflist. It is
"loose" in that it does not care whether
Function:
(defun chars-in-charset-p (x set) (declare (xargs :guard (and (character-listp x) (charset-p set)))) (let ((acl2::__function__ 'chars-in-charset-p)) (declare (ignorable acl2::__function__)) (if (consp x) (and (char-in-charset-p (car x) set) (chars-in-charset-p (cdr x) set)) t)))