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