Function: cl--generic-method-function
cl--generic-method-function is a byte-compiled function defined in
cl-generic.el.gz.
Signature
(cl--generic-method-function CL-X)
Documentation
Access slot "function" of cl--generic-method struct CL-X.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-generic.el.gz
(cl-defstruct (cl--generic-method
(:constructor nil)
(:constructor cl--generic-make-method
(specializers qualifiers uses-cnm function))
(:predicate nil))
(specializers nil :read-only t :type list)
(qualifiers nil :read-only t :type (list-of atom))
;; USES-CNM is a boolean indicating if FUNCTION expects an extra argument
;; holding the next-method.
(uses-cnm nil :read-only t :type boolean)
(function nil :read-only t :type function))