Computes the symmetric difference between two arrays using a custom mapping function. The symmetric difference is the set of elements which are in either of the arrays, but not in their intersection, determined by the result of the mapping function.
An array containing the elements that are present in either arr1
or arr2
but not in both, based on the values returned by the mapping function.
Alias