@Override
public int removeAll(final IntLookupContainer c)
{
// We know c holds sub-types of int and we're not modifying c, so go unchecked.
final IntContainer c2 = (IntContainer) c;
return this.removeAll(new IntPredicate()
{
public boolean apply(int k)
{
return c2.contains(k);
}