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