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