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