public ImmutableShortBooleanMap newWithoutKey(short key)
{
MutableShortBooleanMap map = new ShortBooleanHashMap(this.size());
map.putAll(this);
map.removeKey(key);
return map.toImmutable();
}
public ImmutableShortBooleanMap newWithoutAllKeys(ShortIterable keys)
{