package org.eclipse.collections.api.map.primitive;
import org.eclipse.collections.api.CharIterable;
import org.eclipse.collections.api.block.function.primitive.CharToShortFunction;
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.CharShortPredicate;
import org.eclipse.collections.api.tuple.primitive.CharShortPair;
public interface MutableCharShortMap extends CharShortMap, MutableShortValuesMap
{
void put(char key, short value);
default void putPair(CharShortPair keyValuePair)
{
this.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
void putAll(CharShortMap map);
void removeKey(char key);
void remove(char key);
short removeKeyIfAbsent(char key, short value);
short getIfAbsentPut(char key, short value);
short getIfAbsentPut(char key, ShortFunction0 function);
short getIfAbsentPutWithKey(char key, CharToShortFunction function);
<P> short getIfAbsentPutWith(char key, ShortFunction<? super P> function, P parameter);
short updateValue(char key, short initialValueIfAbsent, ShortToShortFunction function);
@Override
MutableShortCharMap flipUniqueValues();
@Override
MutableCharShortMap select(CharShortPredicate predicate);
@Override
MutableCharShortMap reject(CharShortPredicate predicate);
MutableCharShortMap withKeyValue(char key, short value);
MutableCharShortMap withoutKey(char key);
MutableCharShortMap withoutAllKeys(CharIterable keys);
MutableCharShortMap asUnmodifiable();
MutableCharShortMap asSynchronized();
short addToValue(char key, short toBeAdded);
}