gmath/math.go
2022-08-21 13:49:12 +02:00

8 lines
107 B
Go

package gmath
import "math"
func Pow[N Number](x, y N) N {
return N(math.Pow(float64(x), float64(y)))
}