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