= private = protected
quo(p1)
Performs division.
For example:
Complex(10.0) / 3 #=> (3.3333333333333335+(0/1)*i) Complex(10) / 3 #=> ((10/3)+(0/1)*i) # not (3+0i)
static VALUE nucomp_div(VALUE self, VALUE other) { return f_divide(self, other, f_quo, id_quo); }