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