Let's say I have the following two lists:
x : `a`b`c`d;
y : `a`b`e`f;
For the intersection, there is the inter
operator:
q)x inter y
`a`b
Is there a similar operator to do the EXCLUSIVE OR
such that I would get:
q)x outer y
`c`d`e`f
?