return modified;
}
public boolean removeAll(float... source)
{
FloatHashSet set = FloatHashSet.newSetWith(source);
float[] newItems = new float[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++;
}
}