Specialize next-fresh-numbered-names to a single name.
(next-fresh-numbered-name base index names-to-avoid wrld) → (mv name new-names-to-avoid)
Function:
(defun next-fresh-numbered-name (base index names-to-avoid wrld) (declare (xargs :guard (and (symbolp base) (posp index) (symbol-listp names-to-avoid) (plist-worldp wrld)))) (let ((__function__ 'next-fresh-numbered-name)) (declare (ignorable __function__)) (b* (((mv names names-to-avoid) (next-fresh-numbered-names (list base) index names-to-avoid wrld))) (mv (car names) names-to-avoid))))