Const-optionp
Recognizer for const-option structures.
- Signature
(const-optionp x) → *
Definitions and Theorems
Function: const-optionp
(defun const-optionp (x)
(declare (xargs :guard t))
(cond ((not x) (b* nil t))
(t (b* ((fty::val x)) (constp fty::val)))))