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