Function: cl--generic-method-qualifiers

cl--generic-method-qualifiers is a byte-compiled function defined in cl-generic.el.gz.

Signature

(cl--generic-method-qualifiers CL-X)

Documentation

Access slot "qualifiers" of cl--generic-method struct CL-X.

Aliases

cl-method-qualifiers

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))