mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-19 21:28:32 +02:00
* 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
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package arrays
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// POSITION returns a value indicating whether an element is contained in array. Optionally returns its position.
|
|
// @param {Any[]} array - The source array.
|
|
// @param {Any} value - The target value.
|
|
// @param {Boolean} [position=False] - Boolean value which indicates whether to return item's position.
|
|
// @return {Boolean | Int} - A value indicating whether an element is contained in array.
|
|
func Position(_ 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.Array)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
arr := args[0].(*values.Array)
|
|
el := args[1]
|
|
retIdx := false
|
|
|
|
if len(args) > 2 {
|
|
err = core.ValidateType(args[2], types.Boolean)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
retIdx = args[2].Compare(values.True) == 0
|
|
}
|
|
|
|
position := arr.IndexOf(el)
|
|
|
|
if !retIdx {
|
|
return values.NewBoolean(position > -1), nil
|
|
}
|
|
|
|
return position, nil
|
|
}
|