public boolean retainAll(ByteIterable source)
{
int oldSize = this.size();
final ByteSet sourceSet = source instanceof ByteSet ? (ByteSet) source : source.toSet();
ByteHashBag retained = this.select(new BytePredicate()
{
public boolean accept(byte key)
{
return sourceSet.contains(key);
}