package org.eclipse.collections.api.map.primitive;
import org.eclipse.collections.api.LongIterable;
import org.eclipse.collections.api.block.function.primitive.LongToShortFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction0;
import org.eclipse.collections.api.block.function.primitive.ShortToShortFunction;
import org.eclipse.collections.api.block.predicate.primitive.LongShortPredicate;
import org.eclipse.collections.api.tuple.primitive.LongShortPair;
public interface MutableLongShortMap extends LongShortMap, MutableShortValuesMap
{
void put(long key, short value);
default void putPair(LongShortPair keyValuePair)
{
this.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
void putAll(LongShortMap map);
void removeKey(long key);
void remove(long key);
short removeKeyIfAbsent(long key, short value);
short getIfAbsentPut(long key, short value);
short getIfAbsentPut(long key, ShortFunction0 function);
short getIfAbsentPutWithKey(long key, LongToShortFunction function);
<P> short getIfAbsentPutWith(long key, ShortFunction<? super P> function, P parameter);
short updateValue(long key, short initialValueIfAbsent, ShortToShortFunction function);
@Override
MutableShortLongMap flipUniqueValues();
@Override
MutableLongShortMap select(LongShortPredicate predicate);
@Override
MutableLongShortMap reject(LongShortPredicate predicate);
MutableLongShortMap withKeyValue(long key, short value);
MutableLongShortMap withoutKey(long key);
MutableLongShortMap withoutAllKeys(LongIterable keys);
MutableLongShortMap asUnmodifiable();
MutableLongShortMap asSynchronized();
short addToValue(long key, short toBeAdded);
}