Function to find the intersection between two arrays
{T[]}
intersection([1, 2, 3], [1], [1]);// return [1] Copy
intersection([1, 2, 3], [1], [1]);// return [1]
intersection([1, 2, 4, 7], [4, 6, 7]);// return [4, 7] Copy
intersection([1, 2, 4, 7], [4, 6, 7]);// return [4, 7]
Generated using TypeDoc
Function to find the intersection between two arrays