Skip to main content

array_set_diff

array_set_diff(a, b, [equals]) ⇒ Object

Compute a diff between two arrays, result is a 3 way split between common items, unique items in a array and unique items in b array

Kind: global function
See: prefer to use array_set_diff_sorting, as it's much faster, especially for large sets

ParamTypeDescription
aArray.<T>
bArray.<T>
[equals]functionmethod to determine equality between two elements