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