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. -
-
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, 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(Iterable<Double> iterable)MutableDoubleListMutableDoubleListFactory. ofAll(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(Iterable<Double> iterable)MutableDoubleListMutableDoubleListFactory. withAll(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(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, 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)
-