math/big.Float.Mul (method)
8 uses
math/big (current package)
float.go#L1590: func (z *Float) Mul(x, y *Float) *Float {
floatconv.go#L145: z.Mul(z, p.pow5(uint64(exp5)))
floatconv.go#L205: z.Mul(z, f)
floatconv.go#L207: f.Mul(f, f)
sqrt.go#L102: u.Mul(t, t) // u = t²
sqrt.go#L103: u.Mul(x, u) // = xt²
sqrt.go#L105: u.Mul(t, v) // u = t(3 - xt²)
sqrt.go#L120: z.Mul(x, sqi)
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. |