FGL function that inhibits rewriting of its subterm
(fgl-hide term) → *
This acts more or less like hide in ACL2. Its subterm is processed by
the FGL interpreter, except that whenever a non-FGL-special function call is
processed, it is just turned into a
Function:
(defun fgl-hide (term) (declare (xargs :guard t)) (let ((__function__ 'fgl-hide)) (declare (ignorable __function__)) term))