Function: cl--random-state-j

cl--random-state-j is a byte-compiled function defined in cl-extra.el.gz.

Signature

(cl--random-state-j cl--random-state-j X)

Documentation

Access slot "j" of cl--random-state struct X.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-extra.el.gz
;;;###autoload (autoload 'cl-random-state-p "cl-extra")
;;;###autoload (function-put 'cl-random-state-p 'side-effect-free 'error-free)
(cl-defstruct (cl--random-state
               (:copier nil)
               (:predicate cl-random-state-p)
               (:constructor nil)
               (:constructor cl--make-random-state (vec)))
  (i -1) (j 30) vec)