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