is_flonum


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.

Examples:


is_flonum(1.0)
// true

is_flonum(1)
// false
      

Also see:

fladd
is_fixnum
fixnum_to_flonum


Core Module Index | Contents