Function: nrepl-response-queue-p--cmacro

nrepl-response-queue-p--cmacro is a function defined in nrepl-client.el.

Signature

(nrepl-response-queue-p--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining nrepl-response-queue-p.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
;; Closure converted to defun by helpful.
(defun nrepl-response-queue-p--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `nrepl-response-queue-p'."
  (cl-block nrepl-response-queue-p--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block nrepl-response-queue-p
	(and
	 (memq
	  (type-of cl-x)
	  cl-struct-nrepl-response-queue-tags)
	 t))
     nil nil nil cl-x)))