442443444445446447448449450451452
public ImmutableDoubleList newWithoutAll(DoubleIterable elements) { MutableDoubleList mutableDoubleList = this.toList(); mutableDoubleList.removeAll(elements); return mutableDoubleList.toImmutable(); } public int size() { return this.items.length;