Induct over the structure of a set.
(set-induct set) → *
Function: set-induct
(defun set-induct (set) (declare (xargs :guard t)) (or (emptyp set) (let ((left (set-induct (left set))) (right (set-induct (right set)))) (declare (ignore left right)) t)))