Uses of Interface
org.eclipse.collections.api.list.primitive.ImmutableDoubleList
-
Packages that use ImmutableDoubleList Package Description 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 ofMap
org.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.sorted.immutable org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.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.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.stream -
-
Uses of ImmutableDoubleList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableDoubleListFactory. empty()
ImmutableDoubleList
ImmutableDoubleListFactory. of()
Same asImmutableDoubleListFactory.empty()
.ImmutableDoubleList
ImmutableDoubleListFactory. of(double one)
ImmutableDoubleList
ImmutableDoubleListFactory. of(double... items)
ImmutableDoubleList
ImmutableDoubleListFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleList
ImmutableDoubleListFactory. ofAll(java.util.stream.DoubleStream items)
ImmutableDoubleList
ImmutableDoubleListFactory. ofAll(DoubleIterable items)
ImmutableDoubleList
ImmutableDoubleListFactory. with()
Same asImmutableDoubleListFactory.empty()
.ImmutableDoubleList
ImmutableDoubleListFactory. with(double one)
ImmutableDoubleList
ImmutableDoubleListFactory. with(double... items)
ImmutableDoubleList
ImmutableDoubleListFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleList
ImmutableDoubleListFactory. withAll(java.util.stream.DoubleStream items)
ImmutableDoubleList
ImmutableDoubleListFactory. withAll(DoubleIterable items)
-
Uses of ImmutableDoubleList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableList. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableDoubleList. distinct()
ImmutableDoubleList
ImmutableDoubleList. newWith(double element)
ImmutableDoubleList
ImmutableDoubleList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleList. newWithout(double element)
ImmutableDoubleList
ImmutableDoubleList. newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleList. reject(DoublePredicate predicate)
default ImmutableDoubleList
ImmutableDoubleList. rejectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.ImmutableDoubleList
ImmutableDoubleList. select(DoublePredicate predicate)
default ImmutableDoubleList
ImmutableDoubleList. selectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleList including all elements with corresponding indexes matching the specified predicate.ImmutableDoubleList
ImmutableDoubleList. subList(int fromIndex, int toIndex)
default ImmutableDoubleList
ImmutableDoubleList. tap(DoubleProcedure procedure)
ImmutableDoubleList
DoubleList. toImmutable()
Returns an immutable copy of this list.ImmutableDoubleList
MutableDoubleList. toImmutable()
Returns an immutable copy of this list.ImmutableDoubleList
ImmutableDoubleList. toReversed()
-
Uses of ImmutableDoubleList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableOrderedMap. collectDouble(DoubleFunction<? super V> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
AbstractImmutableSortedBag. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
AbstractImmutableList. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ImmutableDoubleList Modifier and Type Class Description (package private) class
ImmutableDoubleArrayList
ImmutableDoubleArrayList is the non-modifiable equivalent ofDoubleArrayList
.(package private) class
ImmutableDoubleEmptyList
ImmutableDoubleEmptyList is an optimization forImmutableDoubleList
of size 0.(package private) class
ImmutableDoubleSingletonList
ImmutableDoubleSingletonList is an optimization forImmutableDoubleList
of size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableDoubleList Modifier and Type Field Description (package private) static ImmutableDoubleList
ImmutableDoubleEmptyList. INSTANCE
Methods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
ImmutableDoubleArrayList. distinct()
ImmutableDoubleList
ImmutableDoubleEmptyList. distinct()
ImmutableDoubleList
ImmutableDoubleSingletonList. distinct()
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. empty()
ImmutableDoubleList
ImmutableDoubleArrayList. newWith(double element)
ImmutableDoubleList
ImmutableDoubleEmptyList. newWith(double element)
ImmutableDoubleList
ImmutableDoubleSingletonList. newWith(double element)
ImmutableDoubleList
ImmutableDoubleArrayList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleEmptyList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleSingletonList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleArrayList. newWithout(double element)
ImmutableDoubleList
ImmutableDoubleEmptyList. newWithout(double element)
ImmutableDoubleList
ImmutableDoubleSingletonList. newWithout(double element)
ImmutableDoubleList
ImmutableDoubleArrayList. newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleEmptyList. newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleSingletonList. newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. of()
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. of(double one)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. of(double... items)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. ofAll(java.util.stream.DoubleStream items)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleList
ImmutableDoubleArrayList. reject(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleEmptyList. reject(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleSingletonList. reject(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleArrayList. select(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleEmptyList. select(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleSingletonList. select(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleArrayList. subList(int fromIndex, int toIndex)
ImmutableDoubleList
ImmutableDoubleEmptyList. subList(int fromIndex, int toIndex)
ImmutableDoubleList
ImmutableDoubleSingletonList. subList(int fromIndex, int toIndex)
ImmutableDoubleList
ImmutableDoubleArrayList. toImmutable()
ImmutableDoubleList
ImmutableDoubleEmptyList. toImmutable()
ImmutableDoubleList
ImmutableDoubleSingletonList. toImmutable()
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. with()
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. with(double one)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. with(double... items)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. withAll(java.util.stream.DoubleStream items)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. withAll(DoubleIterable items)
-
Uses of ImmutableDoubleList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
DoubleArrayList. toImmutable()
ImmutableDoubleList
SynchronizedDoubleList. toImmutable()
ImmutableDoubleList
UnmodifiableDoubleList. toImmutable()
-
Uses of ImmutableDoubleList in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
AbstractImmutableSortedMap. collectDouble(DoubleFunction<? super V> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleList
AbstractImmutableSortedSet. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleList in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableDoubleList Modifier and Type Method Description static ImmutableDoubleList
PrimitiveStreams. iDoubleList(java.util.stream.DoubleStream stream)
-