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