I assume you have to vectors, v1 and v2, and you want to add all the
elements from v1 that doesn't equal any element from v2 to v2. In that
case you're probably best of using filter to extract the elements from
v1 that are not equal to any element in v2. concat the result with v2.
Thomas
On Sep 2
By union do you mean union as in sets, or just smashing the two lists together?
--Robert McIntyre
On Thu, Sep 2, 2010 at 11:10 AM, mlimotte wrote:
> Hi.
>
> I'd like to do a union of some sequences using my own comparison
> function. Similar to supplying a Comparator in Java. The things
> bein