1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-20 03:29:51 +02:00

30 lines
679 B
Go
Raw Normal View History

package math
import (
"context"
2018-10-14 20:06:27 +03: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 20:06:27 +03:00
// Sin returns the sine of the radian argument.
// @param number (Int|Float) - Input number.
// @returns (Float) - The sin, in radians, of a given number.
func Sin(_ 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.Sin(toFloat(args[0]))), nil
}