442443444445446447448449450451452
public ImmutableByteList newWithoutAll(ByteIterable elements) { MutableByteList mutableByteList = this.toList(); mutableByteList.removeAll(elements); return mutableByteList.toImmutable(); } public int size() { return this.items.length;