27 lines
849 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { difference } from "./difference.mjs";
import { intersection } from "./intersection.mjs";
import { union } from "./union.mjs";
//#region src/array/xor.ts
/**
* Computes the symmetric difference between two arrays. The symmetric difference is the set of elements
* which are in either of the arrays, but not in their intersection.
*
* @template T - The type of elements in the array.
* @param {T[]} arr1 - The first array.
* @param {T[]} arr2 - The second array.
* @returns {T[]} An array containing the elements that are present in either `arr1` or `arr2` but not in both.
*
* @example
* // Returns [1, 2, 5, 6]
* xor([1, 2, 3, 4], [3, 4, 5, 6]);
*
* @example
* // Returns ['a', 'c']
* xor(['a', 'b'], ['b', 'c']);
*/
function xor(arr1, arr2) {
return difference(union(arr1, arr2), intersection(arr1, arr2));
}
//#endregion
export { xor };