Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableLongSet
Packages that use ImmutableLongSet
Package
Description
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains factory API for creating primitive set instances.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of ImmutableLongSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableLongSetModifier and TypeMethodDescriptionImmutableLongBag.selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableLongSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableLongSetModifier and TypeMethodDescriptionImmutableLongSetFactory.empty()ImmutableLongSetFactory.of()Same asImmutableLongSetFactory.empty().ImmutableLongSetFactory.of(long one) Same asImmutableLongSetFactory.with(long).ImmutableLongSetFactory.of(long... items) Same asImmutableLongSetFactory.with(long[]).ImmutableLongSetFactory.ofAll(LongStream items) ImmutableLongSetFactory.ofAll(LongIterable items) ImmutableLongSetFactory.with()Same asImmutableLongSetFactory.empty().ImmutableLongSetFactory.with(long one) ImmutableLongSetFactory.with(long... items) ImmutableLongSetFactory.withAll(LongStream items) ImmutableLongSetFactory.withAll(LongIterable items) -
Uses of ImmutableLongSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableLongSet -
Uses of ImmutableLongSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableLongSetModifier and TypeMethodDescriptiondefault ImmutableLongSetImmutableLongSet.difference(LongSet set) Returns the set of all members ofthisthat are not members ofset.default ImmutableLongSetReturns the set of all objects that are members of boththisandset.ImmutableLongSet.newWith(long element) ImmutableLongSet.newWithAll(LongIterable elements) ImmutableLongSet.newWithout(long element) ImmutableLongSet.newWithoutAll(LongIterable elements) ImmutableLongSet.reject(LongPredicate predicate) ImmutableLongSet.select(LongPredicate predicate) default ImmutableLongSetImmutableLongSet.symmetricDifference(LongSet set) Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default ImmutableLongSetImmutableLongSet.tap(LongProcedure procedure) LongSet.toImmutable()Returns an immutable copy of this set.MutableLongSet.toImmutable()Returns an immutable copy of this set.default ImmutableLongSet