442443444445446447448449450451452
public ImmutableLongList newWithoutAll(LongIterable elements) { MutableLongList mutableLongList = this.toList(); mutableLongList.removeAll(elements); return mutableLongList.toImmutable(); } public int size() { return this.items.length;