symmetricdifference() Function

Returns the values unique to two arrays but are not in the intersection of them.

Syntax

symmetricdifference( array1, array2, … )

array1: (Any Type Array) Array of values.

array2: (Any Type Array) Array of values.

Returns

Any Type Array

Examples

symmetricdifference({1, 2, 3, 4}, {3, 4, 5, 6}) returns 1, 2, 5, 6

Open in Github Built: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK