public ImmutableCharShortMap newWithKeyValue(char key, short value)
{
MutableCharShortMap map = new CharShortHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
public ImmutableCharShortMap newWithoutKey(char key)
{
MutableCharShortMap map = new CharShortHashMap(this.size());