col1 removeAll: col2
On 10/16/2012 10:41 AM, sergio_101 wrote:
> suppose i have:
>
> and ordered collection with: objectA, objectB, objectC
>
> i want to remove objects and be..
>
> what would be the best shorthand way to do this with one expression,
> rather than...
>
> orderedCollection remove: objectA
> orderedCollection remove: objectB
>
> thanks!
>
>