mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
1af8b37a0f
* New type system * Fixed dot notation for HTML elements
36 lines
764 B
Go
36 lines
764 B
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"
|
|
)
|
|
|
|
// Sorted sorts all elements in anyArray.
|
|
// The function will use the default comparison order for FQL value types.
|
|
// @param array (Array) - Target array.
|
|
// @returns (Array) - Sorted array.
|
|
func Sorted(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 1, 1)
|
|
|
|
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)
|
|
|
|
if arr.Length() == 0 {
|
|
return values.NewArray(0), nil
|
|
}
|
|
|
|
return arr.Sort(), nil
|
|
}
|