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