func math.Pow
11 uses
math (current package)
gamma.go#L113: v := Pow(x, 0.5*x-0.25)
gamma.go#L116: y1 = Pow(x, x-0.5) / y1
pow.go#L38: func Pow(x, y float64) float64
pow.go#L72: return Pow(1/x, -y) // Pow(-0, -y)
github.com/evanw/esbuild/internal/js_parser
js_parser.go#L10324: return js_ast.Expr{Loc: expr.Loc, Data: &js_ast.ENumber{Value: math.Pow(left, right)}}, exprOut{}
github.com/lib/pq
encode.go#L404: nanoSec = fracSec * (1000000000 / int(math.Pow(10, float64(fracOff))))
go.opencensus.io/stats/view
aggregation_data.go#L97: return math.Pow(a.Value-a2.Value, 2) < epsilon
aggregation_data.go#L229: return a.Count == a2.Count && a.Min == a2.Min && a.Max == a2.Max && math.Pow(a.Mean-a2.Mean, 2) < epsilon && math.Pow(a.variance()-a2.variance(), 2) < epsilon
golang.org/x/pkgsite/internal/frontend
search.go#L130: unit := math.Pow(10, math.Round(math.Log10(expectedErr)))
google.golang.org/grpc
stream.go#L561: fact := math.Pow(rp.backoffMultiplier, float64(cs.numRetriesSincePushback))
 |
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. |