Function: nrepl-response-queue-head--cmacro

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

Signature

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

Documentation

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
;; Closure converted to defun by helpful.
(defun nrepl-response-queue-head--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `nrepl-response-queue-head'."
  (cl-block nrepl-response-queue-head--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block nrepl-response-queue-head
	(progn
	  (or
	   (nrepl-response-queue-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'nrepl-response-queue cl-x)))
	  (aref cl-x 1)))
     nil nil nil cl-x)))