Function: cl--random-state-i

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

Signature

(cl--random-state-i cl--random-state-i X)

Documentation

Access slot "i" 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)