- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for mpz_add (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
misc/cgo/gmp/gmp.go
} z.init = false } /* * arithmetic */ // Add sets z = x + y and returns z. func (z *Int) Add(x, y *Int) *Int { x.doinit() y.doinit() z.doinit() C.mpz_add(&z.i[0], &x.i[0], &y.i[0]) return z } // Sub sets z = x - y and returns z. func (z *Int) Sub(x, y *Int) *Int { x.doinit() y.doinit() z.doinit() C.mpz_sub(&z.i[0], &x.i[0], &y.i[0])
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Apr 11 16:34:30 GMT 2022 - 9.5K bytes - Click Count (0)