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