Recognize the Java null literal.
(null-literalp x) → yes/no
The Java null literal is a list of Java Unicode characters that consists of the (ASCII) codes of *null-literal*.
Function:
(defun null-literalp (x) (declare (xargs :guard t)) (let ((__function__ 'null-literalp)) (declare (ignorable __function__)) (and (ascii-listp x) (equal (ascii=>string x) *null-literal*))))
Theorem:
(defthm booleanp-of-null-literalp (b* ((yes/no (null-literalp x))) (booleanp yes/no)) :rule-classes :rewrite)