Method: Complex#to_r
- Defined in:
- complex.c
permalink #to_r ⇒ Object
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 |
# File 'complex.c', line 1640
static VALUE
nucomp_to_r(VALUE self)
{
get_dat1(self);
if (!k_exact_zero_p(dat->imag)) {
rb_raise(rb_eRangeError, "can't convert %"PRIsVALUE" into Rational",
self);
}
return f_to_r(dat->real);
}
|