Variable: cl-least-positive-float

cl-least-positive-float is a variable defined in cl-lib.el.gz.

Value

nil

Documentation

The smallest value greater than zero that a Lisp float can hold.

For Emacs, this equals 5e-324 if subnormal numbers are supported, cl-least-positive-normalized-float if they are not. Call cl-float-limits to set this.

View in manual

Aliases

least-positive-float (obsolete since 27.1)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-lib.el.gz
(defconst cl-least-positive-float nil
  "The smallest value greater than zero that a Lisp float can hold.
For Emacs, this equals 5e-324 if subnormal numbers are supported,
`cl-least-positive-normalized-float' if they are not.
Call `cl-float-limits' to set this.")