gmath/math.go

12 lines
170 B
Go
Raw Normal View History

2022-08-21 13:49:12 +02:00
package gmath
import "math"
func Pow[N Number](x, y N) N {
return N(math.Pow(float64(x), float64(y)))
}
2023-04-24 14:53:55 +02:00
func Abs[N Number](v N) N {
return N(math.Abs(float64(v)))
}