コード例 #1
0
ファイル: float.go プロジェクト: jamesadney/gmp
// SetInt sets f = x and returns f.
func (f *Float) SetInt64(x int64) *Float {
	f.doinit()
	C.mpf_set_si(&f.i[0], C.long(x))
	return f
}
コード例 #2
0
ファイル: gmp.go プロジェクト: swantescholz/coding
// SetInt sets f = x and returns f.
func (f *Float) SetSint(x int) *Float {
	C.mpf_set_si(&f.i[0], C.long(x))
	return f
}