2018-10-06 03:27:34 +02:00
|
|
|
package arrays
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-10-14 19:06:27 +02:00
|
|
|
|
2018-10-06 03:27:34 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
2019-02-13 19:31:18 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
2018-10-06 03:27:34 +02:00
|
|
|
)
|
|
|
|
|
2018-10-14 19:06:27 +02:00
|
|
|
// Nth returns the element of an array at a given position.
|
|
|
|
// It is the same as anyArray[position] for positive positions, but does not support negative positions.
|
|
|
|
// @param array (Array) - An array with elements of arbitrary type.
|
|
|
|
// @param index (Int) - Position of desired element in array, positions start at 0.
|
|
|
|
// @returns (Read) - The array element at the given position.
|
|
|
|
// If position is negative or beyond the upper bound of the array, then NONE will be returned.
|
2018-10-06 03:27:34 +02:00
|
|
|
func Nth(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
|
|
err := core.ValidateArgs(args, 2, 2)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-02-13 19:31:18 +02:00
|
|
|
err = core.ValidateType(args[0], types.Array)
|
2018-10-06 03:27:34 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-02-13 19:31:18 +02:00
|
|
|
err = core.ValidateType(args[1], types.Int)
|
2018-10-06 03:27:34 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
|
|
|
arr := args[0].(*values.Array)
|
|
|
|
idx := args[1].(values.Int)
|
|
|
|
|
|
|
|
return arr.Get(idx), nil
|
|
|
|
}
|