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