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