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