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 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.sorted.immutable org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.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.ordered.immutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.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 ImmutableDoubleListImmutableSortedBag. 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 ImmutableDoubleListImmutableDoubleListFactory. empty()ImmutableDoubleListImmutableDoubleListFactory. of()Same asImmutableDoubleListFactory.empty().ImmutableDoubleListImmutableDoubleListFactory. of(double one)ImmutableDoubleListImmutableDoubleListFactory. of(double... items)ImmutableDoubleListImmutableDoubleListFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)ImmutableDoubleListImmutableDoubleListFactory. ofAll(java.util.stream.DoubleStream items)ImmutableDoubleListImmutableDoubleListFactory. ofAll(DoubleIterable items)ImmutableDoubleListImmutableDoubleListFactory. with()Same asImmutableDoubleListFactory.empty().ImmutableDoubleListImmutableDoubleListFactory. with(double one)ImmutableDoubleListImmutableDoubleListFactory. with(double... items)ImmutableDoubleListImmutableDoubleListFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)ImmutableDoubleListImmutableDoubleListFactory. withAll(java.util.stream.DoubleStream items)ImmutableDoubleListImmutableDoubleListFactory. 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 ImmutableDoubleListImmutableList. 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 ImmutableDoubleListImmutableDoubleList. distinct()ImmutableDoubleListImmutableDoubleList. newWith(double element)ImmutableDoubleListImmutableDoubleList. newWithAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleList. newWithout(double element)ImmutableDoubleListImmutableDoubleList. newWithoutAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleList. reject(DoublePredicate predicate)default ImmutableDoubleListImmutableDoubleList. rejectWithIndex(DoubleIntPredicate predicate)Returns a new ImmutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.ImmutableDoubleListImmutableDoubleList. select(DoublePredicate predicate)default ImmutableDoubleListImmutableDoubleList. selectWithIndex(DoubleIntPredicate predicate)Returns a new ImmutableDoubleList including all elements with corresponding indexes matching the specified predicate.ImmutableDoubleListImmutableDoubleList. subList(int fromIndex, int toIndex)default ImmutableDoubleListImmutableDoubleList. tap(DoubleProcedure procedure)ImmutableDoubleListDoubleList. toImmutable()Returns an immutable copy of this list.ImmutableDoubleListMutableDoubleList. toImmutable()Returns an immutable copy of this list.ImmutableDoubleListImmutableDoubleList. 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 ImmutableDoubleListImmutableOrderedMap. 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 ImmutableDoubleListImmutableSortedMap. 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 ImmutableDoubleListImmutableSortedSet. 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 ImmutableDoubleListAbstractImmutableSortedBag. 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 ImmutableDoubleListAbstractImmutableList. 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) classImmutableDoubleArrayListImmutableDoubleArrayList is the non-modifiable equivalent ofDoubleArrayList.(package private) classImmutableDoubleEmptyListImmutableDoubleEmptyList is an optimization forImmutableDoubleListof size 0.(package private) classImmutableDoubleSingletonListImmutableDoubleSingletonList is an optimization forImmutableDoubleListof size 1.Fields in org.eclipse.collections.impl.list.immutable.primitive declared as ImmutableDoubleList Modifier and Type Field Description (package private) static ImmutableDoubleListImmutableDoubleEmptyList. INSTANCEMethods in org.eclipse.collections.impl.list.immutable.primitive that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleListImmutableDoubleArrayList. distinct()ImmutableDoubleListImmutableDoubleEmptyList. distinct()ImmutableDoubleListImmutableDoubleSingletonList. distinct()ImmutableDoubleListImmutableDoubleListFactoryImpl. empty()ImmutableDoubleListImmutableDoubleArrayList. newWith(double element)ImmutableDoubleListImmutableDoubleEmptyList. newWith(double element)ImmutableDoubleListImmutableDoubleSingletonList. newWith(double element)ImmutableDoubleListImmutableDoubleArrayList. newWithAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleEmptyList. newWithAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleSingletonList. newWithAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleArrayList. newWithout(double element)ImmutableDoubleListImmutableDoubleEmptyList. newWithout(double element)ImmutableDoubleListImmutableDoubleSingletonList. newWithout(double element)ImmutableDoubleListImmutableDoubleArrayList. newWithoutAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleEmptyList. newWithoutAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleSingletonList. newWithoutAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleListFactoryImpl. of()ImmutableDoubleListImmutableDoubleListFactoryImpl. of(double one)ImmutableDoubleListImmutableDoubleListFactoryImpl. of(double... items)ImmutableDoubleListImmutableDoubleListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)ImmutableDoubleListImmutableDoubleListFactoryImpl. ofAll(java.util.stream.DoubleStream items)ImmutableDoubleListImmutableDoubleListFactoryImpl. ofAll(DoubleIterable items)ImmutableDoubleListImmutableDoubleArrayList. reject(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleEmptyList. reject(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleSingletonList. reject(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleArrayList. select(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleEmptyList. select(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleSingletonList. select(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleArrayList. subList(int fromIndex, int toIndex)ImmutableDoubleListImmutableDoubleEmptyList. subList(int fromIndex, int toIndex)ImmutableDoubleListImmutableDoubleSingletonList. subList(int fromIndex, int toIndex)ImmutableDoubleListImmutableDoubleArrayList. toImmutable()ImmutableDoubleListImmutableDoubleEmptyList. toImmutable()ImmutableDoubleListImmutableDoubleSingletonList. toImmutable()ImmutableDoubleListImmutableDoubleListFactoryImpl. with()ImmutableDoubleListImmutableDoubleListFactoryImpl. with(double one)ImmutableDoubleListImmutableDoubleListFactoryImpl. with(double... items)ImmutableDoubleListImmutableDoubleListFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)ImmutableDoubleListImmutableDoubleListFactoryImpl. withAll(java.util.stream.DoubleStream items)ImmutableDoubleListImmutableDoubleListFactoryImpl. 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 ImmutableDoubleListDoubleArrayList. toImmutable()ImmutableDoubleListSynchronizedDoubleList. toImmutable()ImmutableDoubleListUnmodifiableDoubleList. toImmutable() -
Uses of ImmutableDoubleList in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable that return ImmutableDoubleList Modifier and Type Method Description ImmutableDoubleListImmutableOrderedMapAdapter. collectDouble(DoubleFunction<? super V> doubleFunction) -
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 ImmutableDoubleListAbstractImmutableSortedMap. 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 ImmutableDoubleListAbstractImmutableSortedSet. 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 ImmutableDoubleListPrimitiveStreams. iDoubleList(java.util.stream.DoubleStream stream)
-