Uses of Interface
org.eclipse.collections.api.list.primitive.MutableDoubleList
-
Packages that use MutableDoubleList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.stream org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListDoubleIterable. toList()Converts the DoubleIterable to a new MutableDoubleList.MutableDoubleListDoubleIterable. 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, java.util.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 MutableDoubleList Modifier and Type Method Description MutableDoubleListMutableSortedBag. 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListMutableDoubleListFactory. empty()MutableDoubleListMutableDoubleListFactory. of()Same asMutableDoubleListFactory.empty().MutableDoubleListMutableDoubleListFactory. of(double... items)MutableDoubleListMutableDoubleListFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleListMutableDoubleListFactory. ofAll(java.util.stream.DoubleStream items)MutableDoubleListMutableDoubleListFactory. ofAll(DoubleIterable items)MutableDoubleListMutableDoubleListFactory. with()Same asMutableDoubleListFactory.empty().MutableDoubleListMutableDoubleListFactory. with(double... items)Creates a new list using the passeditemsargument as the backing store.MutableDoubleListMutableDoubleListFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleListMutableDoubleListFactory. withAll(java.util.stream.DoubleStream items)MutableDoubleListMutableDoubleListFactory. 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 MutableDoubleList Modifier and Type Method Description default 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListMutableDoubleList. asSynchronized()MutableDoubleListMutableDoubleList. asUnmodifiable()MutableDoubleListMutableDoubleList. distinct()default MutableDoubleListMutableDoubleList. newEmpty()Creates a new empty mutable version of the same List type.MutableDoubleListMutableDoubleList. reject(DoublePredicate predicate)default MutableDoubleListMutableDoubleList. rejectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.MutableDoubleListMutableDoubleList. reverseThis()MutableDoubleListMutableDoubleList. 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(java.util.Random rnd)Randomly permutes this list mutating its contents and returns the same list (this).MutableDoubleListMutableDoubleList. 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, java.util.Comparator<? super T> comparator)Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableDoubleListMutableDoubleList. subList(int fromIndex, int toIndex)default MutableDoubleListMutableDoubleList. tap(DoubleProcedure procedure)MutableDoubleListMutableDoubleList. toReversed()MutableDoubleListMutableDoubleList. with(double element)MutableDoubleListMutableDoubleList. withAll(DoubleIterable elements)MutableDoubleListMutableDoubleList. without(double element)MutableDoubleListMutableDoubleList. withoutAll(DoubleIterable elements) -
Uses of MutableDoubleList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableDoubleList Modifier and Type Method Description MutableDoubleListMutableOrderedMap. 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListMutableSortedMap. 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListMutableSortedSet. 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListImmutableDoubleEmptyBag. toList()MutableDoubleListImmutableDoubleHashBag. toList()MutableDoubleListImmutableDoubleSingletonBag. toList()MutableDoubleListImmutableDoubleEmptyBag. toSortedList()MutableDoubleListImmutableDoubleHashBag. toSortedList()MutableDoubleListImmutableDoubleSingletonBag. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableDoubleList Modifier and Type Method Description MutableDoubleListAbstractMutableSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListSynchronizedSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListUnmodifiableSortedBag. 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListAbstractSynchronizedDoubleCollection. toList()MutableDoubleListAbstractUnmodifiableDoubleCollection. toList()MutableDoubleListAbstractSynchronizedDoubleCollection. toSortedList()MutableDoubleListAbstractUnmodifiableDoubleCollection. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListAbstractLazyDoubleIterable. toList()MutableDoubleListCollectDoubleIterable. toList()MutableDoubleListLazyDoubleIterableAdapter. toList()MutableDoubleListReverseDoubleIterable. toList()MutableDoubleListSelectDoubleIterable. toList()MutableDoubleListAbstractLazyDoubleIterable. toSortedList()MutableDoubleListLazyDoubleIterableAdapter. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListImmutableDoubleArrayList. toList()MutableDoubleListImmutableDoubleEmptyList. toList()MutableDoubleListImmutableDoubleSingletonList. toList()MutableDoubleListImmutableDoubleArrayList. toSortedList()MutableDoubleListImmutableDoubleEmptyList. toSortedList()MutableDoubleListImmutableDoubleSingletonList. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableDoubleList Modifier and Type Method Description MutableDoubleListMultiReaderFastList. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListMultiReaderFastList.UntouchableMutableList. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListSynchronizedMutableList. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListUnmodifiableMutableList. 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 MutableDoubleList Modifier and Type Class Description classDoubleArrayListDoubleArrayList is similar to FastList, and is memory-optimized for double primitives.classSynchronizedDoubleListA synchronized view of aMutableDoubleList.classUnmodifiableDoubleListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableDoubleList Modifier and Type Field Description private MutableDoubleListBoxedMutableDoubleList. delegateMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListDoubleArrayList. asSynchronized()MutableDoubleListSynchronizedDoubleList. asSynchronized()MutableDoubleListUnmodifiableDoubleList. asSynchronized()MutableDoubleListDoubleArrayList. asUnmodifiable()MutableDoubleListSynchronizedDoubleList. asUnmodifiable()MutableDoubleListUnmodifiableDoubleList. asUnmodifiable()MutableDoubleListDoubleArrayList. distinct()MutableDoubleListSynchronizedDoubleList. distinct()MutableDoubleListUnmodifiableDoubleList. distinct()MutableDoubleListMutableDoubleListFactoryImpl. empty()private MutableDoubleListSynchronizedDoubleList. getMutableDoubleList()private MutableDoubleListUnmodifiableDoubleList. getMutableDoubleList()MutableDoubleListSynchronizedDoubleList. newEmpty()MutableDoubleListUnmodifiableDoubleList. newEmpty()MutableDoubleListMutableDoubleListFactoryImpl. of()MutableDoubleListMutableDoubleListFactoryImpl. of(double... items)MutableDoubleListMutableDoubleListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleListMutableDoubleListFactoryImpl. ofAll(java.util.stream.DoubleStream items)MutableDoubleListMutableDoubleListFactoryImpl. ofAll(DoubleIterable items)MutableDoubleListSynchronizedDoubleList. reject(DoublePredicate predicate)MutableDoubleListUnmodifiableDoubleList. reject(DoublePredicate predicate)MutableDoubleListSynchronizedDoubleList. rejectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.MutableDoubleListUnmodifiableDoubleList. rejectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.MutableDoubleListSynchronizedDoubleList. reverseThis()MutableDoubleListUnmodifiableDoubleList. reverseThis()MutableDoubleListSynchronizedDoubleList. select(DoublePredicate predicate)MutableDoubleListUnmodifiableDoubleList. select(DoublePredicate predicate)MutableDoubleListSynchronizedDoubleList. selectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate.MutableDoubleListUnmodifiableDoubleList. selectWithIndex(DoubleIntPredicate predicate)Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate.MutableDoubleListSynchronizedDoubleList. shuffleThis()MutableDoubleListSynchronizedDoubleList. shuffleThis(java.util.Random rnd)MutableDoubleListUnmodifiableDoubleList. shuffleThis()MutableDoubleListSynchronizedDoubleList. sortThis()MutableDoubleListSynchronizedDoubleList. sortThis(DoubleComparator comparator)MutableDoubleListUnmodifiableDoubleList. sortThis()<T> MutableDoubleListSynchronizedDoubleList. sortThisBy(DoubleToObjectFunction<T> function)<T> MutableDoubleListSynchronizedDoubleList. sortThisBy(DoubleToObjectFunction<T> function, java.util.Comparator<? super T> comparator)MutableDoubleListDoubleArrayList. subList(int fromIndex, int toIndex)MutableDoubleListSynchronizedDoubleList. subList(int fromIndex, int toIndex)MutableDoubleListUnmodifiableDoubleList. subList(int fromIndex, int toIndex)MutableDoubleListSynchronizedDoubleList. toReversed()MutableDoubleListUnmodifiableDoubleList. toReversed()MutableDoubleListMutableDoubleListFactoryImpl. with()MutableDoubleListMutableDoubleListFactoryImpl. with(double... items)Creates a new list using the passeditemsargument as the backing store.MutableDoubleListMutableDoubleListFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)MutableDoubleListMutableDoubleListFactoryImpl. withAll(java.util.stream.DoubleStream items)MutableDoubleListMutableDoubleListFactoryImpl. withAll(DoubleIterable items)MutableDoubleListMutableDoubleListFactoryImpl. withInitialCapacity(int capacity)Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableDoubleList Constructor Description BoxedMutableDoubleList(MutableDoubleList delegate)SynchronizedDoubleList(MutableDoubleList list)SynchronizedDoubleList(MutableDoubleList list, java.lang.Object newLock)UnmodifiableDoubleList(MutableDoubleList list) -
Uses of MutableDoubleList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListImmutableByteDoubleEmptyMap. toList()MutableDoubleListImmutableByteDoubleHashMap. toList()MutableDoubleListImmutableByteDoubleSingletonMap. toList()MutableDoubleListImmutableCharDoubleEmptyMap. toList()MutableDoubleListImmutableCharDoubleHashMap. toList()MutableDoubleListImmutableCharDoubleSingletonMap. toList()MutableDoubleListImmutableDoubleDoubleEmptyMap. toList()MutableDoubleListImmutableDoubleDoubleHashMap. toList()MutableDoubleListImmutableDoubleDoubleSingletonMap. toList()MutableDoubleListImmutableFloatDoubleEmptyMap. toList()MutableDoubleListImmutableFloatDoubleHashMap. toList()MutableDoubleListImmutableFloatDoubleSingletonMap. toList()MutableDoubleListImmutableIntDoubleEmptyMap. toList()MutableDoubleListImmutableIntDoubleHashMap. toList()MutableDoubleListImmutableIntDoubleSingletonMap. toList()MutableDoubleListImmutableLongDoubleEmptyMap. toList()MutableDoubleListImmutableLongDoubleHashMap. toList()MutableDoubleListImmutableLongDoubleSingletonMap. toList()MutableDoubleListImmutableObjectDoubleEmptyMap. toList()MutableDoubleListImmutableObjectDoubleHashMap. toList()MutableDoubleListImmutableObjectDoubleSingletonMap. toList()MutableDoubleListImmutableShortDoubleEmptyMap. toList()MutableDoubleListImmutableShortDoubleHashMap. toList()MutableDoubleListImmutableShortDoubleSingletonMap. toList()MutableDoubleListImmutableByteDoubleEmptyMap. toSortedList()MutableDoubleListImmutableByteDoubleHashMap. toSortedList()MutableDoubleListImmutableByteDoubleSingletonMap. toSortedList()MutableDoubleListImmutableCharDoubleEmptyMap. toSortedList()MutableDoubleListImmutableCharDoubleHashMap. toSortedList()MutableDoubleListImmutableCharDoubleSingletonMap. toSortedList()MutableDoubleListImmutableDoubleDoubleEmptyMap. toSortedList()MutableDoubleListImmutableDoubleDoubleHashMap. toSortedList()MutableDoubleListImmutableDoubleDoubleSingletonMap. toSortedList()MutableDoubleListImmutableFloatDoubleEmptyMap. toSortedList()MutableDoubleListImmutableFloatDoubleHashMap. toSortedList()MutableDoubleListImmutableFloatDoubleSingletonMap. toSortedList()MutableDoubleListImmutableIntDoubleEmptyMap. toSortedList()MutableDoubleListImmutableIntDoubleHashMap. toSortedList()MutableDoubleListImmutableIntDoubleSingletonMap. toSortedList()MutableDoubleListImmutableLongDoubleEmptyMap. toSortedList()MutableDoubleListImmutableLongDoubleHashMap. toSortedList()MutableDoubleListImmutableLongDoubleSingletonMap. toSortedList()MutableDoubleListImmutableObjectDoubleEmptyMap. toSortedList()MutableDoubleListImmutableObjectDoubleHashMap. toSortedList()MutableDoubleListImmutableObjectDoubleSingletonMap. toSortedList()MutableDoubleListImmutableShortDoubleEmptyMap. toSortedList()MutableDoubleListImmutableShortDoubleHashMap. toSortedList()MutableDoubleListImmutableShortDoubleSingletonMap. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListAbstractMutableDoubleKeySet. toList()MutableDoubleListAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. toList()MutableDoubleListDoubleBooleanHashMap.KeysView. toList()MutableDoubleListObjectDoubleHashMap. toList()MutableDoubleListObjectDoubleHashMap.ValuesCollection. toList()MutableDoubleListObjectDoubleHashMapWithHashingStrategy. toList()MutableDoubleListObjectDoubleHashMapWithHashingStrategy.ValuesCollection. toList()MutableDoubleListSynchronizedByteDoubleMap. toList()MutableDoubleListSynchronizedCharDoubleMap. toList()MutableDoubleListSynchronizedDoubleDoubleMap. toList()MutableDoubleListSynchronizedFloatDoubleMap. toList()MutableDoubleListSynchronizedIntDoubleMap. toList()MutableDoubleListSynchronizedLongDoubleMap. toList()MutableDoubleListSynchronizedObjectDoubleMap. toList()MutableDoubleListSynchronizedShortDoubleMap. toList()MutableDoubleListUnmodifiableByteDoubleMap. toList()MutableDoubleListUnmodifiableCharDoubleMap. toList()MutableDoubleListUnmodifiableDoubleDoubleMap. toList()MutableDoubleListUnmodifiableFloatDoubleMap. toList()MutableDoubleListUnmodifiableIntDoubleMap. toList()MutableDoubleListUnmodifiableLongDoubleMap. toList()MutableDoubleListUnmodifiableObjectDoubleMap. toList()MutableDoubleListUnmodifiableShortDoubleMap. toList()MutableDoubleListAbstractMutableDoubleKeySet. toSortedList()MutableDoubleListAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. toSortedList()MutableDoubleListObjectDoubleHashMap. toSortedList()MutableDoubleListObjectDoubleHashMap.ValuesCollection. toSortedList()MutableDoubleListObjectDoubleHashMapWithHashingStrategy. toSortedList()MutableDoubleListObjectDoubleHashMapWithHashingStrategy.ValuesCollection. toSortedList()MutableDoubleListSynchronizedByteDoubleMap. toSortedList()MutableDoubleListSynchronizedCharDoubleMap. toSortedList()MutableDoubleListSynchronizedDoubleDoubleMap. toSortedList()MutableDoubleListSynchronizedFloatDoubleMap. toSortedList()MutableDoubleListSynchronizedIntDoubleMap. toSortedList()MutableDoubleListSynchronizedLongDoubleMap. toSortedList()MutableDoubleListSynchronizedObjectDoubleMap. toSortedList()MutableDoubleListSynchronizedShortDoubleMap. toSortedList()MutableDoubleListUnmodifiableByteDoubleMap. toSortedList()MutableDoubleListUnmodifiableCharDoubleMap. toSortedList()MutableDoubleListUnmodifiableDoubleDoubleMap. toSortedList()MutableDoubleListUnmodifiableFloatDoubleMap. toSortedList()MutableDoubleListUnmodifiableIntDoubleMap. toSortedList()MutableDoubleListUnmodifiableLongDoubleMap. toSortedList()MutableDoubleListUnmodifiableObjectDoubleMap. toSortedList()MutableDoubleListUnmodifiableShortDoubleMap. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableDoubleList Modifier and Type Method Description MutableDoubleListOrderedMapAdapter. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListUnmodifiableMutableOrderedMap. 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListAbstractMutableSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListSynchronizedSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)MutableDoubleListUnmodifiableTreeMap. collectDouble(DoubleFunction<? super V> doubleFunction) -
Uses of MutableDoubleList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListAbstractDoubleIterable. toList()MutableDoubleListSynchronizedDoubleIterable. toList()MutableDoubleListAbstractDoubleIterable. toSortedList()MutableDoubleListSynchronizedDoubleIterable. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListImmutableDoubleEmptySet. toList()MutableDoubleListImmutableDoubleSingletonSet. toList()MutableDoubleListImmutableDoubleEmptySet. toSortedList()MutableDoubleListImmutableDoubleSingletonSet. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableDoubleList Modifier and Type Method Description MutableDoubleListSortedSetAdapter. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListSynchronizedSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListTreeSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)MutableDoubleListUnmodifiableSortedSet. 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 MutableDoubleList Modifier and Type Method Description MutableDoubleListImmutableDoubleEmptyStack. toList()MutableDoubleListImmutableDoubleSingletonStack. toList()MutableDoubleListImmutableDoubleArrayStack. toSortedList()MutableDoubleListImmutableDoubleEmptyStack. toSortedList()MutableDoubleListImmutableDoubleSingletonStack. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListSynchronizedDoubleStack. toList()MutableDoubleListUnmodifiableDoubleStack. toList()MutableDoubleListDoubleArrayStack. toSortedList()MutableDoubleListSynchronizedDoubleStack. toSortedList()MutableDoubleListUnmodifiableDoubleStack. toSortedList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableDoubleList Modifier and Type Method Description MutableDoubleListAbstractDoubleStack. toList() -
Uses of MutableDoubleList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableDoubleList Modifier and Type Method Description static MutableDoubleListPrimitiveStreams. mDoubleList(java.util.stream.DoubleStream stream) -
Uses of MutableDoubleList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableDoubleList Modifier and Type Method Description static <T> MutableDoubleListArrayIterate. collectDouble(T[] objectArray, DoubleFunction<? super T> doubleFunction)static <T> MutableDoubleListArrayListIterate. collectDouble(java.util.ArrayList<T> list, DoubleFunction<? super T> doubleFunction)static <T> MutableDoubleListListIterate. collectDouble(java.util.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 MutableDoubleList Modifier and Type Method Description static <T> MutableDoubleListRandomAccessListIterate. collectDouble(java.util.List<T> list, DoubleFunction<? super T> doubleFunction)
-