elvish/pkg/eval/module_math.go

12 lines
224 B
Go

package eval
import "math"
// MathNs contains essential math functions.
var MathNs = NewNs().AddGoFns("math", map[string]interface{}{
"abs": math.Abs,
"ceil": math.Ceil,
"floor": math.Floor,
"round": math.Round,
})