public boolean retainAll(CharIterable source)
{
int oldSize = this.size();
final CharSet sourceSet = source instanceof CharSet ? (CharSet) source : source.toSet();
ByteCharHashMap retained = ByteCharHashMap.this.select(new ByteCharPredicate()
{
public boolean accept(byte key, char value)
{
return sourceSet.contains(value);
}