- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for mpz_import (0.05 sec)
-
misc/cgo/gmp/gmp.go
} // SetBytes interprets b as the bytes of a big-endian integer // and sets z to that value. func (z *Int) SetBytes(b []byte) *Int { z.doinit() if len(b) == 0 { z.SetInt64(0) } else { C.mpz_import(&z.i[0], C.size_t(len(b)), 1, 1, 1, 0, unsafe.Pointer(&b[0])) } return z } // SetInt64 sets z = x and returns z. func (z *Int) SetInt64(x int64) *Int { z.doinit()
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Apr 11 16:34:30 UTC 2022 - 9.5K bytes - Viewed (0)