Basic constructor macro for pinst-keyline structures.
(make-pinst-keyline [:guts <guts>])
This is the usual way to construct pinst-keyline structures. It simply conses together a structure with the specified fields.
This macro generates a new pinst-keyline structure from scratch. See also change-pinst-keyline, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-pinst-keyline (&rest args) (std::make-aggregate 'pinst-keyline args '((:guts)) 'make-pinst-keyline nil))
Function:
(defun pinst-keyline (guts) (declare (xargs :guard (pflat-p guts))) (declare (xargs :guard t)) (let ((acl2::__function__ 'pinst-keyline)) (declare (ignorable acl2::__function__)) (b* ((guts (mbe :logic (pflat-fix guts) :exec guts))) (cons :keyline guts))))