Function: cl--generic-method-table--cmacro

cl--generic-method-table--cmacro is a function defined in cl-generic.el.gz.

Signature

(cl--generic-method-table--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining cl--generic-method-table.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-generic.el.gz
;; Closure converted to defun by helpful.
(defun cl--generic-method-table--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `cl--generic-method-table'."
  (cl-block cl--generic-method-table--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block cl--generic-method-table
	(progn
	  (or
	   (cl--struct-cl--generic-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'cl--generic cl-x)))
	  (aref cl-x 3)))
     nil nil nil cl-x)))