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