package org.eclipse.collections.api.map.primitive;
import org.eclipse.collections.api.LongIterable;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function0;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.LongToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.LongObjectPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.tuple.primitive.LongObjectPair;
public interface MutableLongObjectMap<V> extends LongObjectMap<V>, MutablePrimitiveObjectMap<V>
{
V put(long key, V value);
default V putPair(LongObjectPair<V> keyValuePair)
{
return this.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
void putAll(LongObjectMap<? extends V> map);
V removeKey(long key);
V remove(long key);
V getIfAbsentPut(long key, V value);
V getIfAbsentPut(long key, Function0<? extends V> function);
V getIfAbsentPutWithKey(long key, LongToObjectFunction<? extends V> function);
<P> V getIfAbsentPutWith(long key, Function<? super P, ? extends V> function, P parameter);
V updateValue(long key, Function0<? extends V> factory, Function<? super V, ? extends V> function);
<P> V updateValueWith(long key, Function0<? extends V> factory, Function2<? super V, ? super P, ? extends V> function, P parameter);
@Override
MutableObjectLongMap<V> flipUniqueValues();
@Override
MutableLongObjectMap<V> tap(Procedure<? super V> procedure);
@Override
MutableLongObjectMap<V> select(LongObjectPredicate<? super V> predicate);
@Override
MutableLongObjectMap<V> reject(LongObjectPredicate<? super V> predicate);
MutableLongObjectMap<V> withKeyValue(long key, V value);
MutableLongObjectMap<V> withoutKey(long key);
MutableLongObjectMap<V> withoutAllKeys(LongIterable keys);
default MutableLongObjectMap<V> withAllKeyValues(Iterable<LongObjectPair<V>> keyValuePairs)
{
for (LongObjectPair<V> keyValuePair : keyValuePairs)
{
this.putPair(keyValuePair);
}
return this;
}
MutableLongObjectMap<V> asUnmodifiable();
MutableLongObjectMap<V> asSynchronized();
}