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