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