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