Function: FLOAT-FROM-DECIMAL

Documentation

Convert the exact decimal value DECIMAL to a (not neccassily equal) floating point value.

Source

(defun float-from-decimal (decimal)
  "Convert the exact decimal value DECIMAL to a (not neccassily
  equal) floating point value."
  (float decimal))
Source Context