1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/pkg/stdlib/arrays/union.go

47 lines
1.0 KiB
Go
Raw Normal View History

package arrays
import (
"context"
2018-10-14 19:06:27 +02:00
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/runtime/values/types"
)
2018-10-14 19:06:27 +02:00
// Union returns the union of all passed arrays.
// @param arrays (Array, repeated) - List of arrays to combine.
// @returns (Array) - All array elements combined in a single array, in any order.
func Union(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 2, core.MaxArgs)
if err != nil {
return values.None, err
}
err = core.ValidateType(args[0], types.Array)
if err != nil {
return values.None, err
}
firstArrLen := args[0].(*values.Array).Length()
result := values.NewArray(len(args) * int(firstArrLen))
for _, arg := range args {
err := core.ValidateType(arg, types.Array)
if err != nil {
return values.None, err
}
arr := arg.(*values.Array)
arr.ForEach(func(value core.Value, _ int) bool {
result.Push(value)
return true
})
}
return result, nil
}