Function variables depended on by a choice second-order function or by an instance of it.
(funvars-of-choice-fn fun wrld) → funvars
Choice second-order functions and their instances may depend on function variables via their defining bodies.
The returned list may contain duplicates.
Function:
(defun funvars-of-choice-fn (fun wrld) (declare (xargs :guard (and (symbolp fun) (plist-worldp wrld)))) (let ((__function__ 'funvars-of-choice-fn)) (declare (ignorable __function__)) (funvars-of-term (defchoose-body fun wrld) wrld)))