Uses of Interface
org.eclipse.collections.api.set.primitive.LongSet
-
Packages that use LongSet Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.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.factory.primitive This package contains static utilities for creating immutable primitive collection factories.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.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.set.primitive -
-
Uses of LongSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return LongSet Modifier and Type Method Description LongSet
LongBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of LongSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return LongSet Modifier and Type Method Description LongSet
UnsortedSetIterable. collectLong(LongFunction<? super T> longFunction)
-
Uses of LongSet in org.eclipse.collections.api.set.primitive
Subinterfaces of LongSet in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
ImmutableLongSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
MutableLongSet
This file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive that return LongSet Modifier and Type Method Description LongSet
LongSet. difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
.LongSet
LongSet. freeze()
Returns a frozen copy of this set.LongSet
MutableLongSet. freeze()
Returns a frozen copy of this set.LongSet
LongSet. intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
.LongSet
LongSet. reject(LongPredicate predicate)
LongSet
LongSet. select(LongPredicate predicate)
LongSet
LongSet. symmetricDifference(LongSet 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 LongSet
LongSet. tap(LongProcedure procedure)
LongSet
LongSet. union(LongSet set)
Methods in org.eclipse.collections.api.set.primitive with parameters of type LongSet Modifier and Type Method Description LazyIterable<LongLongPair>
LongSet. cartesianProduct(LongSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member ofthis
and b is a member ofset
.default ImmutableLongSet
ImmutableLongSet. difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
.LongSet
LongSet. difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
.default MutableLongSet
MutableLongSet. difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
.default ImmutableLongSet
ImmutableLongSet. intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
.LongSet
LongSet. intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
.default MutableLongSet
MutableLongSet. intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
.default boolean
LongSet. isProperSubsetOf(LongSet set)
Returns true if all the members ofthis
are also members ofset
and the two sets are not equal.default boolean
LongSet. isSubsetOf(LongSet set)
Returns true if all the members ofthis
are also members ofset
.default ImmutableLongSet
ImmutableLongSet. symmetricDifference(LongSet 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).LongSet
LongSet. symmetricDifference(LongSet 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 MutableLongSet
MutableLongSet. symmetricDifference(LongSet 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 ImmutableLongSet
ImmutableLongSet. union(LongSet set)
LongSet
LongSet. union(LongSet set)
default MutableLongSet
MutableLongSet. union(LongSet set)
-
Uses of LongSet in org.eclipse.collections.impl.factory.primitive
Methods in org.eclipse.collections.impl.factory.primitive with parameters of type LongSet Modifier and Type Method Description static <A,B>
LazyIterable<LongLongPair>LongSets. cartesianProduct(LongSet set1, LongSet set2)
static <A,B,C>
LazyIterable<C>LongSets. cartesianProduct(LongSet set1, LongSet set2, LongLongToObjectFunction<C> function)
-
Uses of LongSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement LongSet Modifier and Type Class Description class
AbstractMutableLongKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.(package private) class
ImmutableLongLongMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableLongMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgprivate class
LongBooleanHashMap.KeySet
private class
LongByteHashMap.KeySet
private class
LongCharHashMap.KeySet
private class
LongDoubleHashMap.KeySet
private class
LongFloatHashMap.KeySet
private class
LongIntHashMap.KeySet
private class
LongLongHashMap.KeySet
private class
LongObjectHashMap.KeySet
private class
LongShortHashMap.KeySet
Methods in org.eclipse.collections.impl.map.mutable.primitive that return LongSet Modifier and Type Method Description LongSet
LongBooleanHashMap.KeySet. freeze()
LongSet
LongByteHashMap.KeySet. freeze()
LongSet
LongCharHashMap.KeySet. freeze()
LongSet
LongDoubleHashMap.KeySet. freeze()
LongSet
LongFloatHashMap.KeySet. freeze()
LongSet
LongIntHashMap.KeySet. freeze()
LongSet
LongLongHashMap.KeySet. freeze()
LongSet
LongObjectHashMap.KeySet. freeze()
LongSet
LongShortHashMap.KeySet. freeze()
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongSet Modifier and Type Method Description LazyIterable<LongLongPair>
AbstractMutableLongKeySet. cartesianProduct(LongSet set)
-
Uses of LongSet in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement LongSet Modifier and Type Class Description class
AbstractImmutableLongSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableLongEmptySet
ImmutableLongEmptySet is an optimization forImmutableLongSet
of size 0.(package private) class
ImmutableLongSingletonSet
ImmutableLongSingletonSet is an optimization forImmutableLongSet
of size 1.Fields in org.eclipse.collections.impl.set.immutable.primitive declared as LongSet Modifier and Type Field Description private LongSet
ImmutableLongSetSerializationProxy. set
Methods in org.eclipse.collections.impl.set.immutable.primitive that return LongSet Modifier and Type Method Description LongSet
AbstractImmutableLongSet. freeze()
LongSet
ImmutableLongEmptySet. freeze()
LongSet
ImmutableLongSingletonSet. freeze()
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type LongSet Modifier and Type Method Description LazyIterable<LongLongPair>
ImmutableLongEmptySet. cartesianProduct(LongSet set)
LazyIterable<LongLongPair>
ImmutableLongSingletonSet. cartesianProduct(LongSet set)
Constructors in org.eclipse.collections.impl.set.immutable.primitive with parameters of type LongSet Constructor Description ImmutableLongSetSerializationProxy(LongSet set)
-
Uses of LongSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement LongSet Modifier and Type Class Description class
LongHashSet
This file was automatically generated from template file primitiveHashSet.stg.private static class
LongHashSet.ImmutableLongHashSet
class
SynchronizedLongSet
A synchronized view of aMutableLongSet
.class
UnmodifiableLongSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return LongSet Modifier and Type Method Description LongSet
LongHashSet. freeze()
LongSet
SynchronizedLongSet. freeze()
LongSet
UnmodifiableLongSet. freeze()
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type LongSet Modifier and Type Method Description LazyIterable<LongLongPair>
SynchronizedLongSet. cartesianProduct(LongSet set)
LazyIterable<LongLongPair>
UnmodifiableLongSet. cartesianProduct(LongSet set)
-
Uses of LongSet in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement LongSet Modifier and Type Class Description class
AbstractLongSet
This file was automatically generated from template file abstractPrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.primitive with parameters of type LongSet Modifier and Type Method Description LazyIterable<LongLongPair>
AbstractLongSet. cartesianProduct(LongSet set)
-