1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-19 21:28:32 +02:00
ferret/pkg/stdlib/math/range.go
Tim Voronov 24d8eedd4c
Feature/doc markup (#543)
* Added release notes

* #509 fixedOCOD typo

* Updated values

* Updated comments

* Changed stdlib docs format

* Changed format of array in docs

* Use 'any' instead of 'value' in docs

* New format for optional params

* Updated docs for testing package

* Added namespace information
2020-08-07 21:49:29 -04:00

58 lines
1.3 KiB
Go

package math
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/runtime/values/types"
)
// RANGE returns an array of numbers in the specified range, optionally with increments other than 1.
// @param {Int | Float} start - The value to start the range at (inclusive).
// @param {Int | Float} end - The value to end the range with (inclusive).
// @param {Int | Float} [step=1.0] - How much to increment in every step.
// @return {Int[] | Float[]} - Array of numbers in the specified range, optionally with increments other than 1.
func Range(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 2, 3)
if err != nil {
return values.None, err
}
err = core.ValidateType(args[0], types.Int, types.Float)
if err != nil {
return values.None, err
}
err = core.ValidateType(args[1], types.Int, types.Float)
if err != nil {
return values.None, err
}
var step float64 = 1
if len(args) > 2 {
err = core.ValidateType(args[2], types.Int, types.Float)
if err != nil {
return values.None, err
}
step = toFloat(args[2])
}
start := toFloat(args[0])
end := toFloat(args[1])
arr := values.NewArray(int(end))
for i := start; i <= end; i += step {
arr.Push(values.NewFloat(i))
}
return arr, nil
}