Function: cl--random-time
cl--random-time is a byte-compiled function defined in cl-extra.el.gz.
Signature
(cl--random-time)
Documentation
Return high-precision timestamp from time-convert.
For example, suitable for use as seed by cl-make-random-state.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-extra.el.gz
;; Random numbers.
(defun cl--random-time ()
"Return high-precision timestamp from `time-convert'.
For example, suitable for use as seed by `cl-make-random-state'."
(car (time-convert nil t)))