Basic constructor macro for feat-endian-big structures.
(make-feat-endian-big )
This is the usual way to construct feat-endian-big structures. It simply conses together a structure with the specified fields.
This macro generates a new feat-endian-big structure from scratch. See also change-feat-endian-big, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-feat-endian-big (&rest args) (std::make-aggregate 'feat-endian-big args 'nil 'make-feat-endian-big nil))
Function:
(defun feat-endian-big nil (declare (xargs :guard t)) (cons :big (list)))