math/big.Float.MinPrec (method)
7 uses
math/big (current package)
float.go#L215: func (x *Float) MinPrec() uint {
float.go#L358: return x.prec <= uint32(x.exp) || x.MinPrec() <= uint(x.exp) // not enough bits for fractional mantissa
float.go#L752: if x.MinPrec() <= 64 {
float.go#L800: if x.MinPrec() <= uint(x.exp) {
float.go#L807: if x.exp == 64 && x.MinPrec() == 1 {
float.go#L1097: 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.3.2-preview. (GOOS=darwin 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. |