return modified;
}
public boolean removeAll(short... source)
{
ShortHashSet set = ShortHashSet.newSetWith(source);
short[] newItems = new short[this.size];
int count = 0;
int oldSize = this.size;
for (int index = 0; index < this.size; index++)
{
if (!set.contains(this.items[index]))
{
newItems[count] = this.items[index];
count++;
}
}