is_rational


is_rational(obj)
      

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

Examples:


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

Also see:

is_integer
is_number
is_real
is_complex
is_exact
is_inexact


Core Module Index | Contents