Retrieve the name of the definition rule of a function introduced via defun-sk.
(defun-sk-definition-name fn wrld) → name
This is relevant when
Function:
(defun defun-sk-definition-name (fn wrld) (declare (xargs :guard (and (plist-worldp wrld) (defun-sk-namep fn wrld)))) (let ((__function__ 'defun-sk-definition-name)) (declare (ignorable __function__)) (b* ((options (defun-sk-options fn wrld)) (pair (assoc-eq :constrain options)) ((when (null pair)) nil) (option (cdr pair))) (if (eq option t) (add-suffix fn "-DEFINITION") option))))