mirror of
https://github.com/MontFerret/ferret.git
synced 2025-11-23 21:54:45 +02:00
Feature/#9 array functions (#57)
* #9 Added 'APPEND' function * #9 Added 'FIRST' function * #9 Added 'FLATTEN' function * #9 Added 'INTERSECTION' function * #9 Added 'LAST' function * #9 Added 'MINUS' function * #9 Added 'NTH' function * #9 Added 'OUTERSECTION' function * #9 Added 'POP' function * #9 Added 'POSITION' function * #9 Added 'PUSH' function * Fixed nil pointer exception in value parser * #9 Added 'REMOVE_NTH' function * #9 Added 'REMOVE_VALUE' function * #9 Added 'REMOVE_VALUES' function * #9 Added 'REVERSE' function * #9 Added 'SHIFT' function * #9 Added 'SLICE' function * Removed meme * #9 Added 'SORTED' function * #9 Added SORTED_UNIQUE function * #9 Added 'UNION' function * #9 Added 'UNION_DISTINCT' function * #9 Added 'UNIQUE' function * #9 Added 'UNSHIFT' function * #9 Made more strict optional arg validation * #9 Fixed linting errors
This commit is contained in:
16
pkg/stdlib/arrays/outersection.go
Normal file
16
pkg/stdlib/arrays/outersection.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package arrays
|
||||
|
||||
import (
|
||||
"context"
|
||||
"github.com/MontFerret/ferret/pkg/runtime/core"
|
||||
)
|
||||
|
||||
/*
|
||||
* Return the values that occur only once across all arrays specified.
|
||||
* @param arrays (Array, repeated) - An arbitrary number of arrays as multiple arguments (at least 2).
|
||||
* @returns (Array) - A single array with only the elements that exist only once across all provided arrays.
|
||||
* The element order is random.
|
||||
*/
|
||||
func Outersection(_ context.Context, args ...core.Value) (core.Value, error) {
|
||||
return sections(args, 1)
|
||||
}
|
||||
Reference in New Issue
Block a user