Method: Complex#finite?
- Defined in:
- complex.c
#finite? ⇒ Boolean
1673 1674 1675 1676 1677 1678 1679 |
# File 'complex.c', line 1673
static VALUE
rb_complex_finite_p(VALUE self)
{
get_dat1(self);
return RBOOL(f_finite_p(dat->real) && f_finite_p(dat->imag));
}
|