Raw constructor for evmac-appcondp structures.
Syntax:
(evmac-appcond name formula)
This is the lowest-level constructor for evmac-appcondp structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-evmac-appcond or change-evmac-appcond instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.
The evmac-appcondp structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-evmac-appcond instead.
This is an ordinary constructor function introduced by std::defaggregate.
Function:
(defun evmac-appcond (name formula) (declare (xargs :guard (and (keywordp name) (pseudo-termp formula)))) (cons (cons 'name name) (cons (cons 'formula formula) nil)))