Uses of Interface
org.eclipse.collections.api.set.primitive.MutableLongSet
-
Packages that use MutableLongSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.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.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps 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.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.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.primitive This package contains implementations of the primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map 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.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.stream -
-
Uses of MutableLongSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableLongSet Modifier and Type Method Description MutableLongSet
LongIterable. toSet()
Converts the LongIterable to a new MutableLongSet. -
Uses of MutableLongSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
MutableLongBag. selectUnique()
Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableLongSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
MutableLongSetFactory. empty()
MutableLongSet
MutableLongSetFactory. of()
Same asMutableLongSetFactory.empty()
.MutableLongSet
MutableLongSetFactory. of(long... items)
Same asMutableLongSetFactory.with(long[])
.MutableLongSet
MutableLongSetFactory. ofAll(java.lang.Iterable<java.lang.Long> iterable)
MutableLongSet
MutableLongSetFactory. ofAll(java.util.stream.LongStream items)
MutableLongSet
MutableLongSetFactory. ofAll(LongIterable items)
MutableLongSet
MutableLongSetFactory. with()
Same asMutableLongSetFactory.empty()
.MutableLongSet
MutableLongSetFactory. with(long... items)
MutableLongSet
MutableLongSetFactory. withAll(java.lang.Iterable<java.lang.Long> iterable)
MutableLongSet
MutableLongSetFactory. withAll(java.util.stream.LongStream items)
MutableLongSet
MutableLongSetFactory. withAll(LongIterable items)
default MutableLongSet
MutableLongSetFactory. withInitialCapacity(int capacity)
Same asMutableLongSetFactory.empty()
. -
Uses of MutableLongSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
LongBooleanMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongByteMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongCharMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongDoubleMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongFloatMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongIntMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongLongMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongObjectMap. keySet()
Returns a set containing all the keys in this map.MutableLongSet
LongShortMap. keySet()
Returns a set containing all the keys in this map. -
Uses of MutableLongSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableLongSet Modifier and Type Method Description default MutableLongSet
MutableSet. collectLong(LongFunction<? super T> longFunction)
-
Uses of MutableLongSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
MutableLongSet. asSynchronized()
MutableLongSet
MutableLongSet. asUnmodifiable()
default MutableLongSet
MutableLongSet. difference(LongSet set)
Returns the set of all members ofthis
that are not members ofset
.default MutableLongSet
MutableLongSet. intersect(LongSet set)
Returns the set of all objects that are members of boththis
andset
.default MutableLongSet
MutableLongSet. newEmpty()
Creates a new empty mutable version of the same Set type.MutableLongSet
MutableLongSet. reject(LongPredicate predicate)
MutableLongSet
MutableLongSet. select(LongPredicate predicate)
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 MutableLongSet
MutableLongSet. tap(LongProcedure procedure)
default MutableLongSet
MutableLongSet. union(LongSet set)
MutableLongSet
MutableLongSet. with(long element)
MutableLongSet
MutableLongSet. withAll(LongIterable elements)
MutableLongSet
MutableLongSet. without(long element)
MutableLongSet
MutableLongSet. withoutAll(LongIterable elements)
-
Uses of MutableLongSet in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
ImmutableLongEmptyBag. toSet()
MutableLongSet
ImmutableLongHashBag. toSet()
MutableLongSet
ImmutableLongSingletonBag. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
LongHashBag. selectUnique()
MutableLongSet
SynchronizedLongBag. selectUnique()
MutableLongSet
UnmodifiableLongBag. selectUnique()
-
Uses of MutableLongSet in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
AbstractSynchronizedLongCollection. toSet()
MutableLongSet
AbstractUnmodifiableLongCollection. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
AbstractLazyLongIterable. toSet()
MutableLongSet
CollectLongIterable. toSet()
MutableLongSet
LazyLongIterableAdapter. toSet()
MutableLongSet
ReverseLongIterable. toSet()
MutableLongSet
SelectLongIterable. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
ImmutableLongArrayList. toSet()
MutableLongSet
ImmutableLongEmptyList. toSet()
MutableLongSet
ImmutableLongSingletonList. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
LongInterval. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
ImmutableLongBooleanEmptyMap. keySet()
MutableLongSet
ImmutableLongBooleanHashMap. keySet()
MutableLongSet
ImmutableLongBooleanSingletonMap. keySet()
MutableLongSet
ImmutableLongByteEmptyMap. keySet()
MutableLongSet
ImmutableLongByteHashMap. keySet()
MutableLongSet
ImmutableLongByteSingletonMap. keySet()
MutableLongSet
ImmutableLongCharEmptyMap. keySet()
MutableLongSet
ImmutableLongCharHashMap. keySet()
MutableLongSet
ImmutableLongCharSingletonMap. keySet()
MutableLongSet
ImmutableLongDoubleEmptyMap. keySet()
MutableLongSet
ImmutableLongDoubleHashMap. keySet()
MutableLongSet
ImmutableLongDoubleSingletonMap. keySet()
MutableLongSet
ImmutableLongFloatEmptyMap. keySet()
MutableLongSet
ImmutableLongFloatHashMap. keySet()
MutableLongSet
ImmutableLongFloatSingletonMap. keySet()
MutableLongSet
ImmutableLongIntEmptyMap. keySet()
MutableLongSet
ImmutableLongIntHashMap. keySet()
MutableLongSet
ImmutableLongIntSingletonMap. keySet()
MutableLongSet
ImmutableLongLongEmptyMap. keySet()
MutableLongSet
ImmutableLongLongHashMap. keySet()
MutableLongSet
ImmutableLongLongSingletonMap. keySet()
MutableLongSet
ImmutableLongObjectEmptyMap. keySet()
MutableLongSet
ImmutableLongObjectHashMap. keySet()
MutableLongSet
ImmutableLongObjectSingletonMap. keySet()
MutableLongSet
ImmutableLongShortEmptyMap. keySet()
MutableLongSet
ImmutableLongShortHashMap. keySet()
MutableLongSet
ImmutableLongShortSingletonMap. keySet()
MutableLongSet
ImmutableByteLongEmptyMap. toSet()
MutableLongSet
ImmutableByteLongHashMap. toSet()
MutableLongSet
ImmutableByteLongSingletonMap. toSet()
MutableLongSet
ImmutableCharLongEmptyMap. toSet()
MutableLongSet
ImmutableCharLongHashMap. toSet()
MutableLongSet
ImmutableCharLongSingletonMap. toSet()
MutableLongSet
ImmutableDoubleLongEmptyMap. toSet()
MutableLongSet
ImmutableDoubleLongHashMap. toSet()
MutableLongSet
ImmutableDoubleLongSingletonMap. toSet()
MutableLongSet
ImmutableFloatLongEmptyMap. toSet()
MutableLongSet
ImmutableFloatLongHashMap. toSet()
MutableLongSet
ImmutableFloatLongSingletonMap. toSet()
MutableLongSet
ImmutableIntLongEmptyMap. toSet()
MutableLongSet
ImmutableIntLongHashMap. toSet()
MutableLongSet
ImmutableIntLongSingletonMap. toSet()
MutableLongSet
ImmutableLongLongEmptyMap. toSet()
MutableLongSet
ImmutableLongLongHashMap. toSet()
MutableLongSet
ImmutableLongLongSingletonMap. toSet()
MutableLongSet
ImmutableObjectLongEmptyMap. toSet()
MutableLongSet
ImmutableObjectLongHashMap. toSet()
MutableLongSet
ImmutableObjectLongSingletonMap. toSet()
MutableLongSet
ImmutableShortLongEmptyMap. toSet()
MutableLongSet
ImmutableShortLongHashMap. toSet()
MutableLongSet
ImmutableShortLongSingletonMap. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongSet Modifier and Type Class Description class
AbstractMutableLongKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.private 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 MutableLongSet Modifier and Type Method Description MutableLongSet
AbstractMutableLongKeySet. asSynchronized()
MutableLongSet
AbstractMutableLongKeySet. asUnmodifiable()
MutableLongSet
LongBooleanHashMap. keySet()
MutableLongSet
LongByteHashMap. keySet()
MutableLongSet
LongCharHashMap. keySet()
MutableLongSet
LongDoubleHashMap. keySet()
MutableLongSet
LongFloatHashMap. keySet()
MutableLongSet
LongIntHashMap. keySet()
MutableLongSet
LongLongHashMap. keySet()
MutableLongSet
LongObjectHashMap. keySet()
MutableLongSet
LongShortHashMap. keySet()
MutableLongSet
SynchronizedLongBooleanMap. keySet()
MutableLongSet
SynchronizedLongByteMap. keySet()
MutableLongSet
SynchronizedLongCharMap. keySet()
MutableLongSet
SynchronizedLongDoubleMap. keySet()
MutableLongSet
SynchronizedLongFloatMap. keySet()
MutableLongSet
SynchronizedLongIntMap. keySet()
MutableLongSet
SynchronizedLongLongMap. keySet()
MutableLongSet
SynchronizedLongObjectMap. keySet()
MutableLongSet
SynchronizedLongShortMap. keySet()
MutableLongSet
UnmodifiableLongBooleanMap. keySet()
MutableLongSet
UnmodifiableLongByteMap. keySet()
MutableLongSet
UnmodifiableLongCharMap. keySet()
MutableLongSet
UnmodifiableLongDoubleMap. keySet()
MutableLongSet
UnmodifiableLongFloatMap. keySet()
MutableLongSet
UnmodifiableLongIntMap. keySet()
MutableLongSet
UnmodifiableLongLongMap. keySet()
MutableLongSet
UnmodifiableLongObjectMap. keySet()
MutableLongSet
UnmodifiableLongShortMap. keySet()
MutableLongSet
LongBooleanHashMap.KeySet. newEmpty()
MutableLongSet
LongByteHashMap.KeySet. newEmpty()
MutableLongSet
LongCharHashMap.KeySet. newEmpty()
MutableLongSet
LongDoubleHashMap.KeySet. newEmpty()
MutableLongSet
LongFloatHashMap.KeySet. newEmpty()
MutableLongSet
LongIntHashMap.KeySet. newEmpty()
MutableLongSet
LongLongHashMap.KeySet. newEmpty()
MutableLongSet
LongObjectHashMap.KeySet. newEmpty()
MutableLongSet
LongShortHashMap.KeySet. newEmpty()
MutableLongSet
AbstractMutableLongKeySet. reject(LongPredicate predicate)
MutableLongSet
AbstractMutableLongKeySet. select(LongPredicate predicate)
MutableLongSet
AbstractMutableLongKeySet. toSet()
MutableLongSet
AbstractMutableLongValuesMap.AbstractLongValuesCollection. toSet()
MutableLongSet
LongBooleanHashMap.KeysView. toSet()
MutableLongSet
ObjectLongHashMap. toSet()
MutableLongSet
ObjectLongHashMap.ValuesCollection. toSet()
MutableLongSet
ObjectLongHashMapWithHashingStrategy. toSet()
MutableLongSet
ObjectLongHashMapWithHashingStrategy.ValuesCollection. toSet()
MutableLongSet
SynchronizedByteLongMap. toSet()
MutableLongSet
SynchronizedCharLongMap. toSet()
MutableLongSet
SynchronizedDoubleLongMap. toSet()
MutableLongSet
SynchronizedFloatLongMap. toSet()
MutableLongSet
SynchronizedIntLongMap. toSet()
MutableLongSet
SynchronizedLongLongMap. toSet()
MutableLongSet
SynchronizedObjectLongMap. toSet()
MutableLongSet
SynchronizedShortLongMap. toSet()
MutableLongSet
UnmodifiableByteLongMap. toSet()
MutableLongSet
UnmodifiableCharLongMap. toSet()
MutableLongSet
UnmodifiableDoubleLongMap. toSet()
MutableLongSet
UnmodifiableFloatLongMap. toSet()
MutableLongSet
UnmodifiableIntLongMap. toSet()
MutableLongSet
UnmodifiableLongLongMap. toSet()
MutableLongSet
UnmodifiableObjectLongMap. toSet()
MutableLongSet
UnmodifiableShortLongMap. toSet()
MutableLongSet
AbstractMutableLongKeySet. with(long element)
MutableLongSet
AbstractMutableLongKeySet. withAll(LongIterable elements)
MutableLongSet
AbstractMutableLongKeySet. without(long element)
MutableLongSet
AbstractMutableLongKeySet. withoutAll(LongIterable elements)
-
Uses of MutableLongSet in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
AbstractLongIterable. toSet()
MutableLongSet
SynchronizedLongIterable. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
ImmutableLongEmptySet. toSet()
MutableLongSet
ImmutableLongSingletonSet. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable that return MutableLongSet Modifier and Type Method Description MutableLongSet
MultiReaderUnifiedSet. collectLong(LongFunction<? super T> longFunction)
MutableLongSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectLong(LongFunction<? super T> longFunction)
MutableLongSet
SynchronizedMutableSet. collectLong(LongFunction<? super T> longFunction)
MutableLongSet
UnmodifiableMutableSet. collectLong(LongFunction<? super T> longFunction)
-
Uses of MutableLongSet in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableLongSet Modifier and Type Class Description class
LongHashSet
This file was automatically generated from template file primitiveHashSet.stg.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 MutableLongSet Modifier and Type Method Description MutableLongSet
LongHashSet. asSynchronized()
MutableLongSet
SynchronizedLongSet. asSynchronized()
MutableLongSet
UnmodifiableLongSet. asSynchronized()
MutableLongSet
LongHashSet. asUnmodifiable()
MutableLongSet
SynchronizedLongSet. asUnmodifiable()
MutableLongSet
UnmodifiableLongSet. asUnmodifiable()
MutableLongSet
MutableLongSetFactoryImpl. empty()
private MutableLongSet
SynchronizedLongSet. getMutableLongSet()
private MutableLongSet
UnmodifiableLongSet. getMutableLongSet()
MutableLongSet
SynchronizedLongSet. newEmpty()
MutableLongSet
UnmodifiableLongSet. newEmpty()
MutableLongSet
MutableLongSetFactoryImpl. of()
MutableLongSet
MutableLongSetFactoryImpl. of(long... items)
MutableLongSet
MutableLongSetFactoryImpl. ofAll(java.lang.Iterable<java.lang.Long> iterable)
MutableLongSet
MutableLongSetFactoryImpl. ofAll(java.util.stream.LongStream items)
MutableLongSet
MutableLongSetFactoryImpl. ofAll(LongIterable items)
MutableLongSet
SynchronizedLongSet. reject(LongPredicate predicate)
MutableLongSet
UnmodifiableLongSet. reject(LongPredicate predicate)
MutableLongSet
SynchronizedLongSet. select(LongPredicate predicate)
MutableLongSet
UnmodifiableLongSet. select(LongPredicate predicate)
MutableLongSet
MutableLongSetFactoryImpl. with()
MutableLongSet
MutableLongSetFactoryImpl. with(long... items)
MutableLongSet
MutableLongSetFactoryImpl. withAll(java.lang.Iterable<java.lang.Long> iterable)
MutableLongSet
MutableLongSetFactoryImpl. withAll(java.util.stream.LongStream items)
MutableLongSet
MutableLongSetFactoryImpl. withAll(LongIterable items)
MutableLongSet
MutableLongSetFactoryImpl. withInitialCapacity(int capacity)
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableLongSet Modifier and Type Method Description static SynchronizedLongSet
SynchronizedLongSet. of(MutableLongSet set)
This method will take a MutableLongSet and wrap it directly in a SynchronizedLongSet.static SynchronizedLongSet
SynchronizedLongSet. of(MutableLongSet set, java.lang.Object lock)
This method will take a MutableLongSet and wrap it directly in a SynchronizedLongSet.static UnmodifiableLongSet
UnmodifiableLongSet. of(MutableLongSet set)
This method will take a MutableLongSet and wrap it directly in a UnmodifiableLongSet.Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type MutableLongSet Constructor Description SynchronizedLongSet(MutableLongSet set)
SynchronizedLongSet(MutableLongSet set, java.lang.Object newLock)
UnmodifiableLongSet(MutableLongSet set)
-
Uses of MutableLongSet in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
ImmutableLongEmptyStack. toSet()
MutableLongSet
ImmutableLongSingletonStack. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
SynchronizedLongStack. toSet()
MutableLongSet
UnmodifiableLongStack. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableLongSet Modifier and Type Method Description MutableLongSet
AbstractLongStack. toSet()
-
Uses of MutableLongSet in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableLongSet Modifier and Type Method Description static MutableLongSet
PrimitiveStreams. mLongSet(java.util.stream.LongStream stream)
-