package org.eclipse.collections.api.map.primitive;
import org.eclipse.collections.api.ShortIterable;
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.function.primitive.ShortShortToShortFunction;
import org.eclipse.collections.api.block.predicate.primitive.ShortShortPredicate;
import org.eclipse.collections.api.tuple.primitive.ShortShortPair;
public interface MutableShortShortMap extends ShortShortMap, MutableShortValuesMap
{
void put(short key, short value);
default void putPair(ShortShortPair keyValuePair)
{
this.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
void putAll(ShortShortMap map);
void updateValues(ShortShortToShortFunction function);
void removeKey(short key);
void remove(short key);
short removeKeyIfAbsent(short key, short value);
short getIfAbsentPut(short key, short value);
short getIfAbsentPut(short key, ShortFunction0 function);
short getIfAbsentPutWithKey(short key, ShortToShortFunction function);
<P> short getIfAbsentPutWith(short key, ShortFunction<? super P> function, P parameter);
short updateValue(short key, short initialValueIfAbsent, ShortToShortFunction function);
@Override
MutableShortShortMap flipUniqueValues();
@Override
MutableShortShortMap select(ShortShortPredicate predicate);
@Override
MutableShortShortMap reject(ShortShortPredicate predicate);
MutableShortShortMap withKeyValue(short key, short value);
MutableShortShortMap withoutKey(short key);
MutableShortShortMap withoutAllKeys(ShortIterable keys);
default MutableShortShortMap withAllKeyValues(Iterable<ShortShortPair> keyValuePairs)
{
for (ShortShortPair keyValuePair : keyValuePairs)
{
this.putPair(keyValuePair);
}
return this;
}
MutableShortShortMap asUnmodifiable();
MutableShortShortMap asSynchronized();
short addToValue(short key, short toBeAdded);
}