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