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