Uses of Interface
org.eclipse.collections.api.list.primitive.MutableDoubleList
Packages that use MutableDoubleList
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of
MutableSortedSet.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableDoubleList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableDoubleListModifier and TypeMethodDescriptionDoubleIterable.toList()Converts the DoubleIterable to a new MutableDoubleList.DoubleIterable.toSortedList()default MutableDoubleListDoubleIterable.toSortedList(DoubleComparator comparator) Converts the collection to a MutableDoubleList implementation sorted using the provided comparator.default <T> MutableDoubleListDoubleIterable.toSortedListBy(DoubleToObjectFunction<T> function) Converts the collection to a MutableDoubleListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableDoubleListDoubleIterable.toSortedListBy(DoubleToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableDoubleList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of MutableDoubleList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableDoubleListModifier and TypeMethodDescriptionMutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableDoubleListModifier and TypeMethodDescriptionMutableDoubleListFactory.empty()MutableDoubleListFactory.of()Same asMutableDoubleListFactory.empty().MutableDoubleListFactory.of(double... items) MutableDoubleListFactory.ofAll(DoubleStream items) MutableDoubleListFactory.ofAll(DoubleIterable items) MutableDoubleListFactory.with()Same asMutableDoubleListFactory.empty().MutableDoubleListFactory.with(double... items) Creates a new list using the passeditemsargument as the backing store.MutableDoubleListFactory.withAll(DoubleStream items) MutableDoubleListFactory.withAll(DoubleIterable items) default MutableDoubleListMutableDoubleListFactory.withInitialCapacity(int capacity) Same asMutableDoubleListFactory.empty().default MutableDoubleListMutableDoubleListFactory.wrapCopy(double... array) Creates a new list by first copying the array passed in. -
Uses of MutableDoubleList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableDoubleListModifier and TypeMethodDescriptiondefault MutableDoubleListMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableDoubleListModifier and TypeMethodDescriptionMutableDoubleList.asSynchronized()MutableDoubleList.asUnmodifiable()MutableDoubleList.distinct()default MutableDoubleListMutableDoubleList.newEmpty()Creates a new empty mutable version of the same List type.MutableDoubleList.reject(DoublePredicate predicate) default MutableDoubleListMutableDoubleList.rejectWithIndex(DoubleIntPredicate predicate) Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.MutableDoubleList.reverseThis()MutableDoubleList.select(DoublePredicate predicate) default MutableDoubleListMutableDoubleList.selectWithIndex(DoubleIntPredicate predicate) Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate.default MutableDoubleListMutableDoubleList.shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableDoubleListMutableDoubleList.shuffleThis(Random rnd) Randomly permutes this list mutating its contents and returns the same list (this).MutableDoubleList.sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableDoubleListMutableDoubleList.sortThis(DoubleComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableDoubleListMutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableDoubleListMutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableDoubleList.subList(int fromIndex, int toIndex) default MutableDoubleListMutableDoubleList.tap(DoubleProcedure procedure) MutableDoubleList.toReversed()MutableDoubleList.with(double element) MutableDoubleList.withAll(DoubleIterable elements) MutableDoubleList.without(double element) MutableDoubleList.withoutAll(DoubleIterable elements) -
Uses of MutableDoubleList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableDoubleListModifier and TypeMethodDescriptionMutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableDoubleListModifier and TypeMethodDescriptionMutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableDoubleListModifier and TypeMethodDescriptionMutableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionImmutableDoubleEmptyBag.toList()ImmutableDoubleHashBag.toList()ImmutableDoubleSingletonBag.toList()ImmutableDoubleEmptyBag.toSortedList()ImmutableDoubleHashBag.toSortedList()ImmutableDoubleSingletonBag.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableDoubleListModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableSortedBag.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionAbstractSynchronizedDoubleCollection.toList()AbstractUnmodifiableDoubleCollection.toList()AbstractSynchronizedDoubleCollection.toSortedList()AbstractUnmodifiableDoubleCollection.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableDoubleListModifier and TypeMethodDescriptionAbstractLazyDoubleIterable.toList()CollectDoubleIterable.toList()LazyDoubleIterableAdapter.toList()ReverseDoubleIterable.toList()SelectDoubleIterable.toList()AbstractLazyDoubleIterable.toSortedList()LazyDoubleIterableAdapter.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionImmutableDoubleArrayList.toList()ImmutableDoubleEmptyList.toList()ImmutableDoubleSingletonList.toList()ImmutableDoubleArrayList.toSortedList()ImmutableDoubleEmptyList.toSortedList()ImmutableDoubleSingletonList.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableDoubleListModifier and TypeMethodDescriptionMultiReaderFastList.collectDouble(DoubleFunction<? super T> doubleFunction) MultiReaderFastList.UntouchableMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableMutableList.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableDoubleListModifier and TypeClassDescriptionclassDoubleArrayList is similar to FastList, and is memory-optimized for double primitives.classA synchronized view of aMutableDoubleList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableDoubleListMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionDoubleArrayList.asSynchronized()SynchronizedDoubleList.asSynchronized()UnmodifiableDoubleList.asSynchronized()DoubleArrayList.asUnmodifiable()SynchronizedDoubleList.asUnmodifiable()UnmodifiableDoubleList.asUnmodifiable()DoubleArrayList.distinct()SynchronizedDoubleList.distinct()UnmodifiableDoubleList.distinct()MutableDoubleListFactoryImpl.empty()private MutableDoubleListSynchronizedDoubleList.getMutableDoubleList()private MutableDoubleListUnmodifiableDoubleList.getMutableDoubleList()SynchronizedDoubleList.newEmpty()UnmodifiableDoubleList.newEmpty()MutableDoubleListFactoryImpl.of()MutableDoubleListFactoryImpl.of(double... items) MutableDoubleListFactoryImpl.ofAll(DoubleStream items) MutableDoubleListFactoryImpl.ofAll(DoubleIterable items) SynchronizedDoubleList.reject(DoublePredicate predicate) UnmodifiableDoubleList.reject(DoublePredicate predicate) SynchronizedDoubleList.rejectWithIndex(DoubleIntPredicate predicate) Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableDoubleList.rejectWithIndex(DoubleIntPredicate predicate) Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.SynchronizedDoubleList.reverseThis()UnmodifiableDoubleList.reverseThis()SynchronizedDoubleList.select(DoublePredicate predicate) UnmodifiableDoubleList.select(DoublePredicate predicate) SynchronizedDoubleList.selectWithIndex(DoubleIntPredicate predicate) Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate.UnmodifiableDoubleList.selectWithIndex(DoubleIntPredicate predicate) Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate.SynchronizedDoubleList.shuffleThis()SynchronizedDoubleList.shuffleThis(Random rnd) UnmodifiableDoubleList.shuffleThis()SynchronizedDoubleList.sortThis()SynchronizedDoubleList.sortThis(DoubleComparator comparator) UnmodifiableDoubleList.sortThis()SynchronizedDoubleList.sortThisBy(DoubleToObjectFunction<T> function) SynchronizedDoubleList.sortThisBy(DoubleToObjectFunction<T> function, Comparator<? super T> comparator) DoubleArrayList.subList(int fromIndex, int toIndex) SynchronizedDoubleList.subList(int fromIndex, int toIndex) UnmodifiableDoubleList.subList(int fromIndex, int toIndex) SynchronizedDoubleList.toReversed()UnmodifiableDoubleList.toReversed()MutableDoubleListFactoryImpl.with()MutableDoubleListFactoryImpl.with(double... items) Creates a new list using the passeditemsargument as the backing store.MutableDoubleListFactoryImpl.withAll(DoubleStream items) MutableDoubleListFactoryImpl.withAll(DoubleIterable items) MutableDoubleListFactoryImpl.withInitialCapacity(int capacity) Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableDoubleListModifierConstructorDescriptionBoxedMutableDoubleList(MutableDoubleList delegate) SynchronizedDoubleList(MutableDoubleList list, Object newLock) -
Uses of MutableDoubleList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionImmutableByteDoubleEmptyMap.toList()ImmutableByteDoubleHashMap.toList()ImmutableByteDoubleSingletonMap.toList()ImmutableCharDoubleEmptyMap.toList()ImmutableCharDoubleHashMap.toList()ImmutableCharDoubleSingletonMap.toList()ImmutableDoubleDoubleEmptyMap.toList()ImmutableDoubleDoubleHashMap.toList()ImmutableDoubleDoubleSingletonMap.toList()ImmutableFloatDoubleEmptyMap.toList()ImmutableFloatDoubleHashMap.toList()ImmutableFloatDoubleSingletonMap.toList()ImmutableIntDoubleEmptyMap.toList()ImmutableIntDoubleHashMap.toList()ImmutableIntDoubleSingletonMap.toList()ImmutableLongDoubleEmptyMap.toList()ImmutableLongDoubleHashMap.toList()ImmutableLongDoubleSingletonMap.toList()ImmutableObjectDoubleEmptyMap.toList()ImmutableObjectDoubleHashMap.toList()ImmutableObjectDoubleSingletonMap.toList()ImmutableShortDoubleEmptyMap.toList()ImmutableShortDoubleHashMap.toList()ImmutableShortDoubleSingletonMap.toList()ImmutableByteDoubleEmptyMap.toSortedList()ImmutableByteDoubleHashMap.toSortedList()ImmutableByteDoubleSingletonMap.toSortedList()ImmutableCharDoubleEmptyMap.toSortedList()ImmutableCharDoubleHashMap.toSortedList()ImmutableCharDoubleSingletonMap.toSortedList()ImmutableDoubleDoubleEmptyMap.toSortedList()ImmutableDoubleDoubleHashMap.toSortedList()ImmutableDoubleDoubleSingletonMap.toSortedList()ImmutableFloatDoubleEmptyMap.toSortedList()ImmutableFloatDoubleHashMap.toSortedList()ImmutableFloatDoubleSingletonMap.toSortedList()ImmutableIntDoubleEmptyMap.toSortedList()ImmutableIntDoubleHashMap.toSortedList()ImmutableIntDoubleSingletonMap.toSortedList()ImmutableLongDoubleEmptyMap.toSortedList()ImmutableLongDoubleHashMap.toSortedList()ImmutableLongDoubleSingletonMap.toSortedList()ImmutableObjectDoubleEmptyMap.toSortedList()ImmutableObjectDoubleHashMap.toSortedList()ImmutableObjectDoubleSingletonMap.toSortedList()ImmutableShortDoubleEmptyMap.toSortedList()ImmutableShortDoubleHashMap.toSortedList()ImmutableShortDoubleSingletonMap.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionAbstractMutableDoubleKeySet.toList()AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.toList()DoubleBooleanHashMap.KeysView.toList()ObjectDoubleHashMap.toList()ObjectDoubleHashMap.ValuesCollection.toList()ObjectDoubleHashMapWithHashingStrategy.toList()ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.toList()SynchronizedByteDoubleMap.toList()SynchronizedCharDoubleMap.toList()SynchronizedDoubleDoubleMap.toList()SynchronizedFloatDoubleMap.toList()SynchronizedIntDoubleMap.toList()SynchronizedLongDoubleMap.toList()SynchronizedObjectDoubleMap.toList()SynchronizedShortDoubleMap.toList()UnmodifiableByteDoubleMap.toList()UnmodifiableCharDoubleMap.toList()UnmodifiableDoubleDoubleMap.toList()UnmodifiableFloatDoubleMap.toList()UnmodifiableIntDoubleMap.toList()UnmodifiableLongDoubleMap.toList()UnmodifiableObjectDoubleMap.toList()UnmodifiableShortDoubleMap.toList()AbstractMutableDoubleKeySet.toSortedList()AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.toSortedList()ObjectDoubleHashMap.toSortedList()ObjectDoubleHashMap.ValuesCollection.toSortedList()ObjectDoubleHashMapWithHashingStrategy.toSortedList()ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.toSortedList()SynchronizedByteDoubleMap.toSortedList()SynchronizedCharDoubleMap.toSortedList()SynchronizedDoubleDoubleMap.toSortedList()SynchronizedFloatDoubleMap.toSortedList()SynchronizedIntDoubleMap.toSortedList()SynchronizedLongDoubleMap.toSortedList()SynchronizedObjectDoubleMap.toSortedList()SynchronizedShortDoubleMap.toSortedList()UnmodifiableByteDoubleMap.toSortedList()UnmodifiableCharDoubleMap.toSortedList()UnmodifiableDoubleDoubleMap.toSortedList()UnmodifiableFloatDoubleMap.toSortedList()UnmodifiableIntDoubleMap.toSortedList()UnmodifiableLongDoubleMap.toSortedList()UnmodifiableObjectDoubleMap.toSortedList()UnmodifiableShortDoubleMap.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableDoubleListModifier and TypeMethodDescriptionOrderedMapAdapter.collectDouble(DoubleFunction<? super V> doubleFunction) UnmodifiableMutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableDoubleListModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) SynchronizedSortedMap.collectDouble(DoubleFunction<? super V> doubleFunction) UnmodifiableTreeMap.collectDouble(DoubleFunction<? super V> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableDoubleListModifier and TypeMethodDescriptionAbstractDoubleIterable.toList()SynchronizedDoubleIterable.toList()AbstractDoubleIterable.toSortedList()SynchronizedDoubleIterable.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionImmutableDoubleEmptySet.toList()ImmutableDoubleSingletonSet.toList()ImmutableDoubleEmptySet.toSortedList()ImmutableDoubleSingletonSet.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableDoubleListModifier and TypeMethodDescriptionSortedSetAdapter.collectDouble(DoubleFunction<? super T> doubleFunction) SynchronizedSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) TreeSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) UnmodifiableSortedSet.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionImmutableDoubleEmptyStack.toList()ImmutableDoubleSingletonStack.toList()ImmutableDoubleArrayStack.toSortedList()ImmutableDoubleEmptyStack.toSortedList()ImmutableDoubleSingletonStack.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableDoubleListModifier and TypeMethodDescriptionSynchronizedDoubleStack.toList()UnmodifiableDoubleStack.toList()DoubleArrayStack.toSortedList()SynchronizedDoubleStack.toSortedList()UnmodifiableDoubleStack.toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableDoubleList -
Uses of MutableDoubleList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableDoubleListModifier and TypeMethodDescriptionstatic MutableDoubleListPrimitiveStreams.mDoubleList(DoubleStream stream) -
Uses of MutableDoubleList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableDoubleListModifier and TypeMethodDescriptionstatic <T> MutableDoubleListArrayIterate.collectDouble(T[] objectArray, DoubleFunction<? super T> doubleFunction) static <T> MutableDoubleListArrayListIterate.collectDouble(ArrayList<T> list, DoubleFunction<? super T> doubleFunction) static <T> MutableDoubleListListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableDoubleListModifier and TypeMethodDescriptionstatic <T> MutableDoubleListRandomAccessListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction)