Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableDoubleSet
-
Packages that use ImmutableDoubleSet Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag 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.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stream -
-
Uses of ImmutableDoubleSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableDoubleSet Modifier and Type Method Description ImmutableDoubleSet
ImmutableDoubleBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableDoubleSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableDoubleSet Modifier and Type Method Description ImmutableDoubleSet
ImmutableDoubleSetFactory. empty()
ImmutableDoubleSet
ImmutableDoubleSetFactory. of()
Same asImmutableDoubleSetFactory.empty()
.ImmutableDoubleSet
ImmutableDoubleSetFactory. of(double one)
ImmutableDoubleSet
ImmutableDoubleSetFactory. of(double... items)
ImmutableDoubleSet
ImmutableDoubleSetFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleSet
ImmutableDoubleSetFactory. ofAll(java.util.stream.DoubleStream items)
ImmutableDoubleSet
ImmutableDoubleSetFactory. ofAll(DoubleIterable items)
ImmutableDoubleSet
ImmutableDoubleSetFactory. with()
Same asImmutableDoubleSetFactory.empty()
.ImmutableDoubleSet
ImmutableDoubleSetFactory. with(double one)
ImmutableDoubleSet
ImmutableDoubleSetFactory. with(double... items)
ImmutableDoubleSet
ImmutableDoubleSetFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleSet
ImmutableDoubleSetFactory. withAll(java.util.stream.DoubleStream items)
ImmutableDoubleSet
ImmutableDoubleSetFactory. withAll(DoubleIterable items)
-
Uses of ImmutableDoubleSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableDoubleSet Modifier and Type Method Description ImmutableDoubleSet
ImmutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableDoubleSet Modifier and Type Method Description default ImmutableDoubleSet
ImmutableDoubleSet. difference(DoubleSet set)
Returns the set of all members ofthis
that are not members ofset
.default ImmutableDoubleSet
ImmutableDoubleSet. intersect(DoubleSet set)
Returns the set of all objects that are members of boththis
andset
.ImmutableDoubleSet
ImmutableDoubleSet. newWith(double element)
ImmutableDoubleSet
ImmutableDoubleSet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSet. newWithout(double element)
ImmutableDoubleSet
ImmutableDoubleSet. newWithoutAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSet. reject(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleSet. select(DoublePredicate predicate)
default ImmutableDoubleSet
ImmutableDoubleSet. symmetricDifference(DoubleSet set)
Returns the set of all objects that are a member of exactly one ofthis
andset
(elements which are in one of the sets, but not in both).default ImmutableDoubleSet
ImmutableDoubleSet. tap(DoubleProcedure procedure)
ImmutableDoubleSet
DoubleSet. toImmutable()
Returns an immutable copy of this set.ImmutableDoubleSet
MutableDoubleSet. toImmutable()
Returns an immutable copy of this set.default ImmutableDoubleSet
ImmutableDoubleSet. union(DoubleSet set)
-
Uses of ImmutableDoubleSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return ImmutableDoubleSet Modifier and Type Method Description ImmutableDoubleSet
ImmutableDoubleEmptyBag. selectUnique()
ImmutableDoubleSet
ImmutableDoubleHashBag. selectUnique()
ImmutableDoubleSet
ImmutableDoubleSingletonBag. selectUnique()
-
Uses of ImmutableDoubleSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ImmutableDoubleSet Modifier and Type Class Description (package private) class
ImmutableDoubleDoubleMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableDoubleMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgMethods in org.eclipse.collections.impl.map.mutable.primitive that return ImmutableDoubleSet Modifier and Type Method Description ImmutableDoubleSet
ImmutableDoubleDoubleMapKeySet. reject(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleMapKeySet. reject(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleDoubleMapKeySet. select(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleMapKeySet. select(DoublePredicate predicate)
ImmutableDoubleSet
AbstractMutableDoubleKeySet. toImmutable()
-
Uses of ImmutableDoubleSet in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable that return ImmutableDoubleSet Modifier and Type Method Description ImmutableDoubleSet
AbstractImmutableSet. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleSet in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement ImmutableDoubleSet Modifier and Type Class Description class
AbstractImmutableDoubleSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableDoubleEmptySet
ImmutableDoubleEmptySet is an optimization forImmutableDoubleSet
of size 0.(package private) class
ImmutableDoubleSingletonSet
ImmutableDoubleSingletonSet is an optimization forImmutableDoubleSet
of size 1.Fields in org.eclipse.collections.impl.set.immutable.primitive declared as ImmutableDoubleSet Modifier and Type Field Description (package private) static ImmutableDoubleSet
ImmutableDoubleEmptySet. INSTANCE
Methods in org.eclipse.collections.impl.set.immutable.primitive that return ImmutableDoubleSet Modifier and Type Method Description ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. empty()
ImmutableDoubleSet
AbstractImmutableDoubleSet. newWith(double element)
ImmutableDoubleSet
ImmutableDoubleEmptySet. newWith(double element)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. newWith(double element)
ImmutableDoubleSet
AbstractImmutableDoubleSet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleEmptySet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
AbstractImmutableDoubleSet. newWithout(double element)
ImmutableDoubleSet
ImmutableDoubleEmptySet. newWithout(double element)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. newWithout(double element)
ImmutableDoubleSet
AbstractImmutableDoubleSet. newWithoutAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleEmptySet. newWithoutAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. newWithoutAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. of()
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. of(double one)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. of(double... items)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. ofAll(java.util.stream.DoubleStream items)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleSet
ImmutableDoubleEmptySet. reject(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. reject(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleEmptySet. select(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. select(DoublePredicate predicate)
ImmutableDoubleSet
AbstractImmutableDoubleSet. toImmutable()
ImmutableDoubleSet
ImmutableDoubleEmptySet. toImmutable()
ImmutableDoubleSet
ImmutableDoubleSingletonSet. toImmutable()
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. with()
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. with(double one)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. with(double... items)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. withAll(java.util.stream.DoubleStream items)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. withAll(DoubleIterable items)
-
Uses of ImmutableDoubleSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement ImmutableDoubleSet Modifier and Type Class Description private static class
DoubleHashSet.ImmutableDoubleHashSet
Methods in org.eclipse.collections.impl.set.mutable.primitive that return ImmutableDoubleSet Modifier and Type Method Description static ImmutableDoubleSet
DoubleHashSet.ImmutableDoubleHashSet. newSetWith(double... elements)
ImmutableDoubleSet
DoubleHashSet.ImmutableDoubleHashSet. reject(DoublePredicate predicate)
ImmutableDoubleSet
DoubleHashSet.ImmutableDoubleHashSet. select(DoublePredicate predicate)
ImmutableDoubleSet
DoubleHashSet. toImmutable()
ImmutableDoubleSet
SynchronizedDoubleSet. toImmutable()
ImmutableDoubleSet
UnmodifiableDoubleSet. toImmutable()
-
Uses of ImmutableDoubleSet in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableDoubleSet Modifier and Type Method Description static ImmutableDoubleSet
PrimitiveStreams. iDoubleSet(java.util.stream.DoubleStream stream)
-