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