func math.Ldexp
7 uses
math (current package)
exp.go#L202: return Ldexp(y, k)
ldexp.go#L15: func Ldexp(frac float64, exp int) float64 {
mod.go#L46: r = r - Ldexp(y, rexp-yexp)
pow.go#L165: return Ldexp(a1, ae)
math/big
rat.go#L164: f = float32(math.Ldexp(float64(mantissa), exp-Msize1))
rat.go#L262: f = math.Ldexp(float64(mantissa), exp-Msize1)
fmt
scan.go#L797: return math.Ldexp(f, m)
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. |