package org.eclipse.collections.api.list;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Random;
import org.eclipse.collections.api.block.HashingStrategy;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.factory.Lists;
import org.eclipse.collections.api.list.primitive.MutableBooleanList;
import org.eclipse.collections.api.list.primitive.MutableByteList;
import org.eclipse.collections.api.list.primitive.MutableCharList;
import org.eclipse.collections.api.list.primitive.MutableDoubleList;
import org.eclipse.collections.api.list.primitive.MutableFloatList;
import org.eclipse.collections.api.list.primitive.MutableIntList;
import org.eclipse.collections.api.list.primitive.MutableLongList;
import org.eclipse.collections.api.list.primitive.MutableShortList;
import org.eclipse.collections.api.multimap.list.MutableListMultimap;
import org.eclipse.collections.api.partition.list.PartitionMutableList;
import org.eclipse.collections.api.tuple.Pair;
public interface MutableList<T>
extends MutableCollection<T>, List<T>, Cloneable, ListIterable<T>
{
@Override
default MutableList<T> with(T element)
{
this.add(element);
return this;
}
@Override
default MutableList<T> without(T element)
{
this.remove(element);
return this;
}
@Override
default MutableList<T> withAll(Iterable<? extends T> elements)
{
this.addAllIterable(elements);
return this;
}
@Override
default MutableList<T> withoutAll(Iterable<? extends T> elements)
{
this.removeAllIterable(elements);
return this;
}
@Override
MutableList<T> newEmpty();
MutableList<T> clone();
@Override
default MutableList<T> tap(Procedure<? super T> procedure)
{
this.forEach(procedure);
return this;
}
@Override
default MutableList<T> select(Predicate<? super T> predicate)
{
return this.select(predicate, this.newEmpty());
}
@Override
default <P> MutableList<T> selectWith(Predicate2<? super T, ? super P> predicate, P parameter)
{
return this.selectWith(predicate, parameter, this.newEmpty());
}
@Override
default MutableList<T> reject(Predicate<? super T> predicate)
{
return this.reject(predicate, this.newEmpty());
}
@Override
default <P> MutableList<T> rejectWith(Predicate2<? super T, ? super P> predicate, P parameter)
{
return this.rejectWith(predicate, parameter, this.newEmpty());
}
@Override
PartitionMutableList<T> partition(Predicate<? super T> predicate);
@Override
<P> PartitionMutableList<T> partitionWith(Predicate2<? super T, ? super P> predicate, P parameter);
@Override
<S> MutableList<S> selectInstancesOf(Class<S> clazz);
@Override
default <V> MutableList<V> collect(Function<? super T, ? extends V> function)
{
return this.collect(function, Lists.mutable.withInitialCapacity(this.size()));
}
@Override
default <V> MutableList<V> collectWithIndex(ObjectIntToObjectFunction<? super T, ? extends V> function)
{
int[] index = {0};
return this.collect(each -> function.valueOf(each, index[0]++));
}
@Override
MutableBooleanList collectBoolean(BooleanFunction<? super T> booleanFunction);
@Override
MutableByteList collectByte(ByteFunction<? super T> byteFunction);
@Override
MutableCharList collectChar(CharFunction<? super T> charFunction);
@Override
MutableDoubleList collectDouble(DoubleFunction<? super T> doubleFunction);
@Override
MutableFloatList collectFloat(FloatFunction<? super T> floatFunction);
@Override
MutableIntList collectInt(IntFunction<? super T> intFunction);
@Override
MutableLongList collectLong(LongFunction<? super T> longFunction);
@Override
MutableShortList collectShort(ShortFunction<? super T> shortFunction);
@Override
default <P, V> MutableList<V> collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter)
{
return this.collectWith(function, parameter, Lists.mutable.withInitialCapacity(this.size()));
}
@Override
default <V> MutableList<V> collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function)
{
return this.collectIf(predicate, function, Lists.mutable.empty());
}
@Override
default <V> MutableList<V> flatCollect(Function<? super T, ? extends Iterable<V>> function)
{
return this.flatCollect(function, Lists.mutable.withInitialCapacity(this.size()));
}
@Override
default <P, V> MutableList<V> flatCollectWith(Function2<? super T, ? super P, ? extends Iterable<V>> function, P parameter)
{
return this.flatCollect(each -> function.apply(each, parameter));
}
@Override
MutableList<T> distinct();
@Override
MutableList<T> distinct(HashingStrategy<? super T> hashingStrategy);
@Override
<V> MutableList<T> distinctBy(Function<? super T, ? extends V> function);
default MutableList<T> sortThis(Comparator<? super T> comparator)
{
this.sort(comparator);
return this;
}
default MutableList<T> sortThis()
{
return this.sortThis(null);
}
<V extends Comparable<? super V>> MutableList<T> sortThisBy(Function<? super T, ? extends V> function);
MutableList<T> sortThisByInt(IntFunction<? super T> function);
MutableList<T> sortThisByBoolean(BooleanFunction<? super T> function);
MutableList<T> sortThisByChar(CharFunction<? super T> function);
MutableList<T> sortThisByByte(ByteFunction<? super T> function);
MutableList<T> sortThisByShort(ShortFunction<? super T> function);
MutableList<T> sortThisByFloat(FloatFunction<? super T> function);
MutableList<T> sortThisByLong(LongFunction<? super T> function);
MutableList<T> sortThisByDouble(DoubleFunction<? super T> function);
@Override
MutableList<T> subList(int fromIndex, int toIndex);
@Override
MutableList<T> asUnmodifiable();
@Override
MutableList<T> asSynchronized();
@Override
default ImmutableList<T> toImmutable()
{
return Lists.immutable.withAll(this);
}
@Override
<V> MutableListMultimap<V, T> groupBy(Function<? super T, ? extends V> function);
@Override
<V> MutableListMultimap<V, T> groupByEach(Function<? super T, ? extends Iterable<V>> function);
@Override
<S> MutableList<Pair<T, S>> zip(Iterable<S> that);
@Override
MutableList<Pair<T, Integer>> zipWithIndex();
@Override
MutableList<T> take(int count);
@Override
MutableList<T> takeWhile(Predicate<? super T> predicate);
@Override
MutableList<T> drop(int count);
@Override
MutableList<T> dropWhile(Predicate<? super T> predicate);
@Override
PartitionMutableList<T> partitionWhile(Predicate<? super T> predicate);
@Override
default MutableList<T> toReversed()
{
return this.toList().reverseThis();
}
default MutableList<T> reverseThis()
{
Collections.reverse(this);
return this;
}
default MutableList<T> shuffleThis()
{
Collections.shuffle(this);
return this;
}
default MutableList<T> shuffleThis(Random random)
{
Collections.shuffle(this, random);
return this;
}
}