Retrieve the keyed options of a function introduced via defun-sk.
(defun-sk-options fn wrld) → options
Function:
(defun defun-sk-options (fn wrld) (declare (xargs :guard (and (plist-worldp wrld) (defun-sk-namep fn wrld)))) (let ((__function__ 'defun-sk-options)) (declare (ignorable __function__)) (b* ((form (defun-sk-p fn wrld)) ((mv erp & options) (partition-rest-and-keyword-args form *defun-sk-keywords*)) ((when erp) (raise "Internal error: ~ the DEFUN-SK form ~x0 of ~x1 is malformed." form fn))) options)))