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.
-
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(). but takes in an initial capacitydefault 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)