package org.eclipse.collections.api.map.primitive;
import org.eclipse.collections.api.IntIterable;
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.IntToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.IntObjectPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.tuple.primitive.IntObjectPair;
public interface MutableIntObjectMap<V> extends IntObjectMap<V>, MutablePrimitiveObjectMap<V>
{
V put(int key, V value);
default V putPair(IntObjectPair<V> keyValuePair)
{
return this.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
void putAll(IntObjectMap<? extends V> map);
V removeKey(int key);
V remove(int key);
V getIfAbsentPut(int key, V value);
V getIfAbsentPut(int key, Function0<? extends V> function);
V getIfAbsentPutWithKey(int key, IntToObjectFunction<? extends V> function);
<P> V getIfAbsentPutWith(int key, Function<? super P, ? extends V> function, P parameter);
V updateValue(int key, Function0<? extends V> factory, Function<? super V, ? extends V> function);
<P> V updateValueWith(int key, Function0<? extends V> factory, Function2<? super V, ? super P, ? extends V> function, P parameter);
@Override
MutableObjectIntMap<V> flipUniqueValues();
@Override
MutableIntObjectMap<V> tap(Procedure<? super V> procedure);
@Override
MutableIntObjectMap<V> select(IntObjectPredicate<? super V> predicate);
@Override
MutableIntObjectMap<V> reject(IntObjectPredicate<? super V> predicate);
MutableIntObjectMap<V> withKeyValue(int key, V value);
MutableIntObjectMap<V> withoutKey(int key);
MutableIntObjectMap<V> withoutAllKeys(IntIterable keys);
MutableIntObjectMap<V> asUnmodifiable();
MutableIntObjectMap<V> asSynchronized();
}