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