Files
ferret/pkg/stdlib/arrays/first.go
T

31 lines
651 B
Go
Raw Normal View History

2018-10-05 21:27:34 -04:00
package arrays
import (
"context"
2018-10-14 20:06:27 +03:00
2018-10-05 21:27:34 -04:00
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
2019-02-13 12:31:18 -05:00
"github.com/MontFerret/ferret/pkg/runtime/values/types"
2018-10-05 21:27:34 -04:00
)
2020-08-07 21:49:29 -04:00
// FIRST returns a first element from a given array.
// @param {Any[]} arr - Target array.
// @return {Any} - First element in a given array.
2018-10-05 21:27:34 -04:00
func First(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 1)
if err != nil {
return values.None, err
}
2019-02-13 12:31:18 -05:00
err = core.ValidateType(args[0], types.Array)
2018-10-05 21:27:34 -04:00
if err != nil {
return values.None, nil
}
arr := args[0].(*values.Array)
return arr.Get(0), nil
}