return map.toImmutable();
}
public ImmutableIntBooleanMap newWithoutAllKeys(IntIterable keys)
{
MutableIntBooleanMap map = new IntBooleanHashMap(this.size());
map.putAll(this);
IntIterator iterator = keys.intIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}