Find the indices into an array where thevalues occur in a second array; keywords yield intersection, union, and complement
b An array.
c - (Optional) The number of such indices.
Intersection The vector of elements common to both a and b; if there are no such elements then nothing is returned.
Union the vector of elements in either a or b.
A_Complement The array of indices into a where the values do not occur in b; if there are no such indices then -1 is returned.
B_Complement The array of indices into b where the values do not occur in a; if there are no such indices then -1 is returned.
PM, WHEREIN( [0,1,2,3,2], [0,0,4,2,5,5,6,0] ) 0 2 4