is_real


is_real(obj)
      

Return true if the object obj is a real number, false otherwise.

Examples:


is_real(123)
// true
is_real(1/23)
// true
is_real(123.2)
// true
is_real(polar(10, 2))
// false
      

Also see:

is_integer
is_number
is_complex
is_rational


Core Module Index | Contents