return map.toImmutable();
}
public ImmutableByteCharMap newWithoutAllKeys(ByteIterable keys)
{
MutableByteCharMap map = new ByteCharHashMap(this.size());
map.putAll(this);
ByteIterator iterator = keys.byteIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}