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