Plaster
New
List
Login
text
default
anonymous
2022.04.19 08:29:38
(defun names (structure) (if (atom structure) (list structure) (reduce #'append (mapcar #'names structure)))) (defmacro destructuring-setf (structure tree) `(multiple-value-setq ,names (destructuring-bind ,structure ,tree (values ,@names))))
Raw
Annotate
Repaste
Edit