// Div sets z = x / y, rounding toward zero, and returns z. func (z *Int) Div(x, y *Int) *Int { x.doinit() y.doinit() z.doinit() C.mpz_tdiv_q(&z.i[0], &x.i[0], &y.i[0]) return z }
// Quo sets z to the quotient x/y for y != 0 and returns z. // If y == 0, a division-by-zero run-time panic occurs. // Quo implements truncated division (like Go). func (z *Int) Quo(x, y *Int) *Int { x.doinit() y.doinit() z.doinit() C.mpz_tdiv_q(z.ptr, x.ptr, y.ptr) return z }