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