return map.toImmutable();
}
public ImmutableCharFloatMap newWithoutAllKeys(CharIterable keys)
{
MutableCharFloatMap map = new CharFloatHashMap(this.size());
map.putAll(this);
CharIterator iterator = keys.charIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}