math/big.Float.MinPrec (method)
7 uses
math/big (current package)
float.go#L215: func (x *Float) MinPrec() uint {
float.go#L359: return x.prec <= uint32(x.exp) || x.MinPrec() <= uint(x.exp) // not enough bits for fractional mantissa
float.go#L760: if x.MinPrec() <= 64 {
float.go#L808: if x.MinPrec() <= uint(x.exp) {
float.go#L815: if x.exp == 64 && x.MinPrec() == 1 {
float.go#L1105: if x.MinPrec() <= exp {
ftoa.go#L372: n = 1 + (x.MinPrec()-1+3)/4*4 // round MinPrec up to 1 mod 4
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |