Raw constructor for honsed definterface-hash-infop structures.
Syntax:
(honsed-definterface-hash-info input-size-limit output-size)
This is identical to definterface-hash-info, except that we hons the structure we are creating.
This is an ordinary honsing constructor introduced by std::defaggregate.
Function:
(defun honsed-definterface-hash-info (input-size-limit output-size) (declare (xargs :guard (and (maybe-posp input-size-limit) (posp output-size)))) (mbe :logic (definterface-hash-info input-size-limit output-size) :exec (hons (hons 'input-size-limit input-size-limit) (hons (hons 'output-size output-size) nil))))