added Pow method

This commit is contained in:
Timon Ringwald 2022-08-21 13:49:12 +02:00
parent ff2f846cea
commit 4513bfcb6f
2 changed files with 12 additions and 1 deletions

7
math.go Normal file
View File

@ -0,0 +1,7 @@
package gmath
import "math"
func Pow[N Number](x, y N) N {
return N(math.Pow(float64(x), float64(y)))
}

View File

@ -1,5 +1,9 @@
package gmath
type Number interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~float32 | ~float64
Integer | ~float32 | ~float64
}
type Integer interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64
}