2018-10-14 03:07:28 +02:00
|
|
|
package math
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-10-14 19:06:27 +02:00
|
|
|
"math/rand"
|
|
|
|
|
2018-10-14 03:07:28 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
|
|
)
|
|
|
|
|
2018-10-14 19:06:27 +02:00
|
|
|
// Rand return a pseudo-random number between 0 and 1.
|
2019-03-19 22:17:05 +02:00
|
|
|
// @param max (Float|Int, optional) - Upper limit.
|
|
|
|
// @param min (Float|Int, optional) - Lower limit.
|
2018-10-14 19:06:27 +02:00
|
|
|
// @returns (Float) - A number greater than 0 and less than 1.
|
2018-10-14 03:07:28 +02:00
|
|
|
func Rand(_ context.Context, args ...core.Value) (core.Value, error) {
|
2019-03-19 22:17:05 +02:00
|
|
|
err := core.ValidateArgs(args, 0, 2)
|
2018-10-14 03:07:28 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-03-19 22:17:05 +02:00
|
|
|
if len(args) == 0 {
|
|
|
|
return values.NewFloat(rand.Float64()), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var max float64
|
|
|
|
var min float64
|
|
|
|
|
2019-05-19 18:12:11 +02:00
|
|
|
max = float64(values.ToFloat(args[0]))
|
2019-03-19 22:17:05 +02:00
|
|
|
|
|
|
|
if len(args) > 1 {
|
2019-05-19 18:12:11 +02:00
|
|
|
min = float64(values.ToFloat(args[1]))
|
2019-03-19 22:17:05 +02:00
|
|
|
} else {
|
|
|
|
max, min = core.NumberBoundaries(max)
|
|
|
|
}
|
|
|
|
|
|
|
|
return values.NewFloat(core.Random(max, min)), nil
|
2018-10-14 03:07:28 +02:00
|
|
|
}
|