return this.element1 == element ? ShortLists.immutable.with() : this;
}
public ImmutableShortList newWithAll(ShortIterable elements)
{
ShortArrayList arrayList = ShortArrayList.newListWith(this.element1);
arrayList.addAll(elements);
return arrayList.toImmutable();
}