Basic constructor macro for string-option-none structures.
(make-string-option-none )
This is the usual way to construct string-option-none structures. It simply conses together a structure with the specified fields.
This macro generates a new string-option-none structure from scratch. See also change-string-option-none, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-string-option-none (&rest args) (std::make-aggregate 'string-option-none args 'nil 'make-string-option-none nil))
Function:
(defun string-option-none nil (declare (xargs :guard t)) (let ((__function__ 'string-option-none)) (declare (ignorable __function__)) nil))