Function: cl-random-state-p

cl-random-state-p is an autoloaded and byte-compiled function defined in cl-extra.el.gz.

Signature

(cl-random-state-p CL-X)

Aliases

random-state-p (obsolete since 27.1)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-extra.el.gz
;;;###autoload (autoload 'cl-random-state-p "cl-extra")
(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)