is_flonum(obj)
Return true
if obj
is a flonum,
otherwise return false
.
Flonums are inexact real numbers represented using the IEEE double-precision floating-point representation.
is_flonum(1.0)
// true
is_flonum(1)
// false