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