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