12 lines
170 B
Go
12 lines
170 B
Go
package gmath
|
|
|
|
import "math"
|
|
|
|
func Pow[N Number](x, y N) N {
|
|
return N(math.Pow(float64(x), float64(y)))
|
|
}
|
|
|
|
func Abs[N Number](v N) N {
|
|
return N(math.Abs(float64(v)))
|
|
}
|