// Sets f = Trunc(x) (=round towards zero) and returns f. func (f *Float) Trunc(x *Float) *Float { x.doinit() f.doinit() C.mpf_trunc(&f.i[0], &x.i[0]) return f }
// Sets f = Trunc(x) (=round towards zero) and returns f. func (f *Float) Trunc(x *Float) *Float { C.mpf_trunc(&f.i[0], &x.i[0]) return f }