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