: new ShortIntHashMap().toImmutable();
}
public ImmutableShortIntMap reject(ShortIntPredicate predicate)
{
return predicate.accept(this.key1, this.value1) ? new ShortIntHashMap().toImmutable()
: ShortIntHashMap.newWithKeysValues(this.key1, this.value1).toImmutable();
}