finite?()
Returns true if cmp's magnitude is finite number, oterwise returns false.
static VALUE rb_complex_finite_p(VALUE self) { get_dat1(self); if (f_finite_p(dat->real) && f_finite_p(dat->imag)) { return Qtrue; } return Qfalse; }