return map.toImmutable();
}
public ImmutableFloatCharMap newWithoutAllKeys(FloatIterable keys)
{
MutableFloatCharMap map = new FloatCharHashMap(this.size());
map.putAll(this);
FloatIterator iterator = keys.floatIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}