public ImmutableLongBooleanMap newWithoutKey(long key)
{
MutableLongBooleanMap map = new LongBooleanHashMap(this.size());
map.putAll(this);
map.removeKey(key);
return map.toImmutable();
}
public ImmutableLongBooleanMap newWithoutAllKeys(LongIterable keys)
{