// Sets f = Ceil(x) and returns f. func (f *Float) Ceil(x *Float) *Float { x.doinit() f.doinit() C.mpf_ceil(&f.i[0], &x.i[0]) return f }
// Sets f = Ceil(x) and returns f. func (f *Float) Ceil(x *Float) *Float { C.mpf_ceil(&f.i[0], &x.i[0]) return f }