When compiled with floating-point number support, SCM's numerics are instead described mostly by:
http://srfi.schemers.org/srfi-70/
gcd
, lcm
,
modulo
, remainder
,
quotient
, even?
, and odd?
accept only exact integer arguments.
(/ 0 0)
returns a NaN instead of erring.
(log 0)
returns an infinity instead of erring.
(expt 0 -1)
returns an infinity instead of erring.
(* 0 (expt 0 -1))
returns a NaN instead of erring.
Copyright © 2007, 2013 Aubrey Jaffer