/*
* Copyright (c) 2018 Goldman Sachs and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.api.collection.primitive;
import java.util.Collection;
import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.DoublePredicate;
import org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure;
import org.eclipse.collections.api.iterator.MutableDoubleIterator;
import org.eclipse.collections.api.collection.MutableCollection;
This file was automatically generated from template file mutablePrimitiveCollection.stg.
Since: 3.0.
/**
* This file was automatically generated from template file mutablePrimitiveCollection.stg.
*
* @since 3.0.
*/
public interface MutableDoubleCollection extends DoubleIterable
{
@Override
MutableDoubleIterator doubleIterator();
boolean add(double element);
boolean addAll(double... source);
boolean addAll(DoubleIterable source);
boolean remove(double value);
boolean removeAll(DoubleIterable source);
boolean removeAll(double... source);
Since: 9.1
/**
* @since 9.1
*/
default boolean removeIf(DoublePredicate predicate)
{
boolean changed = false;
MutableDoubleIterator iterator = this.doubleIterator();
while (iterator.hasNext())
{
if (predicate.accept(iterator.next()))
{
iterator.remove();
changed = true;
}
}
return changed;
}
See Also: - retainAll.retainAll(Collection)
Since: 5.0
/**
* @see Collection#retainAll(Collection)
* @since 5.0
*/
boolean retainAll(DoubleIterable elements);
See Also: - retainAll.retainAll(Collection)
Since: 5.0
/**
* @see Collection#retainAll(Collection)
* @since 5.0
*/
boolean retainAll(double... source);
void clear();
@Override
MutableDoubleCollection select(DoublePredicate predicate);
@Override
MutableDoubleCollection reject(DoublePredicate predicate);
<V> MutableCollection<V> collect(DoubleToObjectFunction<? extends V> function);
MutableDoubleCollection with(double element);
MutableDoubleCollection without(double element);
MutableDoubleCollection withAll(DoubleIterable elements);
MutableDoubleCollection withoutAll(DoubleIterable elements);
MutableDoubleCollection asUnmodifiable();
MutableDoubleCollection asSynchronized();
ImmutableDoubleCollection toImmutable();
Since: 9.0.
/**
* @since 9.0.
*/
@Override
default MutableDoubleCollection tap(DoubleProcedure procedure)
{
this.forEach(procedure);
return this;
}
Creates a new empty mutable version of the same collection type.
Since: 9.2.
/**
* Creates a new empty mutable version of the same collection type.
* @since 9.2.
*/
default MutableDoubleCollection newEmpty()
{
throw new UnsupportedOperationException("Implement in concrete classes.");
}
}