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
|
|
|
// SORTED_UNIQUE sorts all elements in anyArray.
|
2018-10-14 20:06:27 +03:00
|
|
|
// The function will use the default comparison order for FQL value types.
|
|
|
|
// Additionally, the values in the result array will be made unique
|
2020-08-07 21:49:29 -04:00
|
|
|
// @param {Any[]} array - Target array.
|
|
|
|
// @return {Any[]} - Sorted array.
|
2018-10-05 21:27:34 -04:00
|
|
|
func SortedUnique(_ 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, err
|
|
|
|
}
|
|
|
|
|
|
|
|
arr := args[0].(*values.Array)
|
|
|
|
|
|
|
|
if arr.Length() == 0 {
|
|
|
|
return values.NewArray(0), nil
|
|
|
|
}
|
|
|
|
|
2018-10-28 01:45:26 -04:00
|
|
|
return ToUniqueArray(arr.Sort()), nil
|
2018-10-05 21:27:34 -04:00
|
|
|
}
|