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