Constructor macro for atc-call-infop structures.
Syntax:
(make-atc-call-info [:encapsulate <encapsulate>])
This is our preferred way to construct atc-call-infop structures. It simply conses together a structure with the specified fields.
This macro generates a new atc-call-infop structure from scratch. See also change-atc-call-info, which can "change" an existing structure, instead.
The atc-call-infop structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-atc-call-info instead.
This is an ordinary
Macro:
(defmacro make-atc-call-info (&rest args) (std::make-aggregate 'atc-call-info args '((:encapsulate)) 'make-atc-call-info nil))