1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/stdlib/math/atan.go

30 lines
703 B
Go
Raw Normal View History

package math
import (
"context"
2018-10-14 19:06:27 +02:00
"math"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/runtime/values/types"
)
2018-10-14 19:06:27 +02:00
// Atan returns the arctangent, in radians, of a given number.
// @param number (Int|Float) - Input number.
// @returns (Float) - The arctangent, in radians, of a given number.
func Atan(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 1)
if err != nil {
return values.None, err
}
err = core.ValidateType(args[0], types.Int, types.Float)
if err != nil {
return values.None, err
}
return values.NewFloat(math.Atan(toFloat(args[0]))), nil
}