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