Recognizes any object.
(anyp x) → t
This just ignores x and always returns t. It is occasionally useful, e.g., when defining structures using macros that expect constraints for certain fields.
Function: anyp
(defun anyp (x) (declare (ignore x)) (declare (xargs :guard t)) (let ((__function__ 'anyp)) (declare (ignorable __function__)) t))