Function: avl-tree--cmpfun--cmacro
avl-tree--cmpfun--cmacro is a function defined in avl-tree.el.gz.
Signature
(avl-tree--cmpfun--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining avl-tree--cmpfun.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/avl-tree.el.gz
;; Closure converted to defun by helpful.
(defun avl-tree--cmpfun--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `avl-tree--cmpfun'."
(cl-block avl-tree--cmpfun--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block avl-tree--cmpfun
(progn
(or
(avl-tree-p cl-x)
(signal 'wrong-type-argument
(list 'avl-tree- cl-x)))
(aref cl-x 2)))
nil nil nil cl-x)))