442443444445446447448449450451452
public ImmutableIntList newWithoutAll(IntIterable elements) { MutableIntList mutableIntList = this.toList(); mutableIntList.removeAll(elements); return mutableIntList.toImmutable(); } public int size() { return this.items.length;