1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/pkg/stdlib/math/cos.go

30 lines
666 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
// Cos returns the cosine of a given number.
// @param number (Int|Float) - Input number.
// @returns (Float) - The cosine of a given number.
func Cos(_ 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.Cos(toFloat(args[0]))), nil
}