MCPcopy
hub / github.com/github/git-sizer / pow

Function pow

git_sizer_test.go:539–545  ·  view source on GitHub ↗
(x uint64, n int)

Source from the content-addressed store, hash-verified

537}
538
539func pow(x uint64, n int) uint64 {
540 p := uint64(1)
541 for ; n > 0; n-- {
542 p *= x
543 }
544 return p
545}
546
547type refGrouper struct{}
548

Callers 1

TestBombFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected